diff options
| author | Benjamin Peterson <benjamin@python.org> | 2014-08-24 23:04:25 (GMT) |
|---|---|---|
| committer | Benjamin Peterson <benjamin@python.org> | 2014-08-24 23:04:25 (GMT) |
| commit | d475731c546eb850dc451d4508ad7138788a2a9a (patch) | |
| tree | d700e79e8b9cb74596340d39fbb834fba3708102 /Lib/test/test_weakref.py | |
| parent | cdcafb78b22ec1cc677abbb2ce292db79279e221 (diff) | |
| parent | 18bb702182e6962c1b5e4eef96b65b8996d3ec8a (diff) | |
| download | cpython-d475731c546eb850dc451d4508ad7138788a2a9a.zip cpython-d475731c546eb850dc451d4508ad7138788a2a9a.tar.gz cpython-d475731c546eb850dc451d4508ad7138788a2a9a.tar.bz2 | |
merge 3.4 (#22267)
Diffstat (limited to 'Lib/test/test_weakref.py')
| -rw-r--r-- | Lib/test/test_weakref.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_weakref.py b/Lib/test/test_weakref.py index 7476273..94c98ad 100644 --- a/Lib/test/test_weakref.py +++ b/Lib/test/test_weakref.py @@ -1329,6 +1329,7 @@ class MappingTestCase(TestBase): yield Object(v), v finally: it = None # should commit all removals + gc.collect() self.check_weak_destroy_and_mutate_while_iterating(dict, testcontext) def test_weak_values_destroy_while_iterating(self): @@ -1351,6 +1352,7 @@ class MappingTestCase(TestBase): yield k, Object(k) finally: it = None # should commit all removals + gc.collect() self.check_weak_destroy_and_mutate_while_iterating(dict, testcontext) def test_make_weak_keyed_dict_from_dict(self): |
