mirror of https://github.com/python/cpython.git
don't rely on the order of module clearing
This commit is contained in:
parent
9769eb063c
commit
34b345b888
|
@ -70,7 +70,7 @@ def test_clear_dict_in_ref_cycle(self):
|
|||
m = ModuleType("foo")
|
||||
m.destroyed = destroyed
|
||||
s = """class A:
|
||||
def __del__(self):
|
||||
def __del__(self, destroyed=destroyed):
|
||||
destroyed.append(1)
|
||||
a = A()"""
|
||||
exec(s, m.__dict__)
|
||||
|
|
Loading…
Reference in New Issue