mirror of
https://github.com/python/cpython.git
synced 2025-07-31 23:23:11 +00:00
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!
This commit is contained in:
parent
305480c9dc
commit
a8919fe631
3 changed files with 55 additions and 5 deletions
|
@ -666,7 +666,7 @@ class ReferencesTestCase(TestBase):
|
|||
w = Target()
|
||||
|
||||
|
||||
class SubclassableWeakrefTestCase(unittest.TestCase):
|
||||
class SubclassableWeakrefTestCase(TestBase):
|
||||
|
||||
def test_subclass_refs(self):
|
||||
class MyRef(weakref.ref):
|
||||
|
@ -730,6 +730,44 @@ class SubclassableWeakrefTestCase(unittest.TestCase):
|
|||
self.assertEqual(r.meth(), "abcdef")
|
||||
self.failIf(hasattr(r, "__dict__"))
|
||||
|
||||
def test_subclass_refs_with_cycle(self):
|
||||
# Bug #3110
|
||||
# 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.
|
||||
class MyRef(weakref.ref):
|
||||
pass
|
||||
|
||||
# Use a local callback, for "regrtest -R::"
|
||||
# to detect refcounting problems
|
||||
def callback(w):
|
||||
self.cbcalled += 1
|
||||
|
||||
o = C()
|
||||
r1 = MyRef(o, callback)
|
||||
r1.o = o
|
||||
del o
|
||||
|
||||
del r1 # Used to crash here
|
||||
|
||||
self.assertEqual(self.cbcalled, 0)
|
||||
|
||||
# Same test, with two weakrefs to the same object
|
||||
# (since code paths are different)
|
||||
o = C()
|
||||
r1 = MyRef(o, callback)
|
||||
r2 = MyRef(o, callback)
|
||||
r1.r = r2
|
||||
r2.o = o
|
||||
del o
|
||||
del r2
|
||||
|
||||
del r1 # Used to crash here
|
||||
|
||||
self.assertEqual(self.cbcalled, 0)
|
||||
|
||||
|
||||
class Object:
|
||||
def __init__(self, arg):
|
||||
|
@ -1171,6 +1209,7 @@ def test_main():
|
|||
MappingTestCase,
|
||||
WeakValueDictionaryTestCase,
|
||||
WeakKeyDictionaryTestCase,
|
||||
SubclassableWeakrefTestCase,
|
||||
)
|
||||
test_support.run_doctest(sys.modules[__name__])
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue