1. 24 Sep, 2015 1 commit
  2. 23 Sep, 2015 7 commits
  3. 22 Sep, 2015 4 commits
    • 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
    • Kevin Modzelewski's avatar
      Merge pull request #931 from kmod/coexist · c5139df3
      Kevin Modzelewski authored
      Properly handle METH_COEXIST
      c5139df3
    • Dong-hee Na's avatar
      fix Makefile · d9678aae
      Dong-hee Na authored
      d9678aae
    • Kevin Modzelewski's avatar
      Properly handle METH_COEXIST · 8e953dab
      Kevin Modzelewski authored
      By importing the cpython implementations of add_methods / add_members /
      add_getset.
      8e953dab
  4. 21 Sep, 2015 2 commits
  5. 20 Sep, 2015 7 commits
  6. 19 Sep, 2015 1 commit
  7. 18 Sep, 2015 7 commits
  8. 17 Sep, 2015 4 commits
  9. 16 Sep, 2015 7 commits