Kaydet (Commit) 18bb7021 authored tarafından Benjamin Peterson's avatar Benjamin Peterson

fix some test_weakref tests to not rely on ref-counting (closes #22267)

üst 549c1972
...@@ -1317,6 +1317,7 @@ class MappingTestCase(TestBase): ...@@ -1317,6 +1317,7 @@ class MappingTestCase(TestBase):
yield Object(v), v yield Object(v), v
finally: finally:
it = None # should commit all removals it = None # should commit all removals
gc.collect()
self.check_weak_destroy_and_mutate_while_iterating(dict, testcontext) self.check_weak_destroy_and_mutate_while_iterating(dict, testcontext)
def test_weak_values_destroy_while_iterating(self): def test_weak_values_destroy_while_iterating(self):
...@@ -1339,6 +1340,7 @@ class MappingTestCase(TestBase): ...@@ -1339,6 +1340,7 @@ class MappingTestCase(TestBase):
yield k, Object(k) yield k, Object(k)
finally: finally:
it = None # should commit all removals it = None # should commit all removals
gc.collect()
self.check_weak_destroy_and_mutate_while_iterating(dict, testcontext) self.check_weak_destroy_and_mutate_while_iterating(dict, testcontext)
def test_make_weak_keyed_dict_from_dict(self): def test_make_weak_keyed_dict_from_dict(self):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment