mirror of https://github.com/python/cpython
Test for the bug in recurse_down_subclasses() that I just fixed.
This commit is contained in:
parent
59e6c53920
commit
e7f3e24eeb
|
@ -2773,6 +2773,16 @@ def subclasspropagation():
|
|||
else:
|
||||
raise TestFailed, "d.foo should be undefined now"
|
||||
|
||||
# Test a nasty bug in recurse_down_subclasses()
|
||||
import gc
|
||||
class A(object):
|
||||
pass
|
||||
class B(A):
|
||||
pass
|
||||
del B
|
||||
gc.collect()
|
||||
A.__setitem__ = lambda *a: None # crash
|
||||
|
||||
def buffer_inherit():
|
||||
import binascii
|
||||
# SF bug [#470040] ParseTuple t# vs subclasses.
|
||||
|
|
Loading…
Reference in New Issue