]> granicus.if.org Git - python/commit
Merged revisions 64309 via svnmerge from
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>
Mon, 16 Jun 2008 19:50:09 +0000 (19:50 +0000)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>
Mon, 16 Jun 2008 19:50:09 +0000 (19:50 +0000)
commitc856c7a2f05f059a7f53dc2238f1e271cb1caaa1
treeaf2e221d61d2a1e5c49f444c68bac46d34862bb9
parent27d63678a31f1adcf5f2f0f9f88d6b78e93a9c52
Merged revisions 64309 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r64309 | amaury.forgeotdarc | 2008-06-16 21:12:42 +0200 (lun., 16 juin 2008) | 8 lines

  Issue 3110: Crash with weakref subclass,
  seen after a "import multiprocessing.reduction"

  An instance of a weakref subclass can have attributes.
  If such a weakref holds the only strong reference to the object,
  deleting the weakref will delete the object. In this case,
  the callback must not be called, because the ref object is being deleted!
........
Lib/test/test_weakref.py
Misc/NEWS
Objects/weakrefobject.c