1. 29 Sep, 2015 4 commits
  2. 28 Sep, 2015 6 commits
  3. 25 Sep, 2015 5 commits
  4. 24 Sep, 2015 6 commits
  5. 23 Sep, 2015 18 commits
  6. 22 Sep, 2015 1 commit
    • Kevin Modzelewski's avatar
      Try to fix set-dtor segfault · 3b44af6b
      Kevin Modzelewski authored
      The issue is that the set destructor, which is marked as "safe",
      will try to access the type object.  But a safe destructor is not
      allowed to assume that any objects are alive, including its own class.
      
      We do actually force the class to be alive during a safe destructor,
      but the tp_mro field was not so lucky.  We could try to address this by
      saying again that types have ordered finalizers, which will cause them
      to also keep their references alive.  But this doesn't completely work
      since it will cause issues with objects that have actual ordered finalizers.
      
      So for now, just remove type-check from the destructor.
      3b44af6b