1. 01 Jul, 2015 1 commit
  2. 30 Jun, 2015 10 commits
  3. 29 Jun, 2015 2 commits
  4. 27 Jun, 2015 5 commits
  5. 26 Jun, 2015 18 commits
  6. 25 Jun, 2015 4 commits
    • Kevin Modzelewski's avatar
      Temporary fix for freeing-classes-before-instances bug · e0bd51eb
      Kevin Modzelewski authored
      Was running into it, so just added a quick fix that should hopefully
      get us through until rudi gets in his real fix.
      
      This commit just delays freeing the class objects until the end of the
      sweep.  It doesn't deal with a number of corner cases such as if
      a class and a metaclass get freed at the same time (they both get delayed
      to the same point), or if we free a class with weakrefs to it (it just
      gets treated like a normal weakreferent).
      e0bd51eb
    • Kevin Modzelewski's avatar
      Merge pull request #645 from kmod/cheetah_fix · f6b3c256
      Kevin Modzelewski authored
      Don't have cheetah_test look for system cheetah
      f6b3c256
    • Kevin Modzelewski's avatar
      Merge pull request #641 from toshok/increase_sqlalchemy_time · 71eb746c
      Kevin Modzelewski authored
      do 100 queries per insert instead of 1000 after all inserts.
      71eb746c
    • Kevin Modzelewski's avatar
      Don't have cheetah_test look for system cheetah · 70a7f175
      Kevin Modzelewski authored
      cheetah's tests do a PATH search for the "cheetah" executable,
      and since we were appending the test-cheetah's location to PATH,
      it would find the system cheetah preferentially to the test cheetah.
      
      This is fine since on most systems there isn't a system cheetah, but
      somehow mine has one.  The system cheetah will invoke the system python,
      which will end up passing more of the tests.
      
      We could prepend PATH instead of append to it, but it looks like the
      the tests don't need anything else, so for now don't pass in anything else
      in PATH.
      70a7f175