diff options
author | Benjamin Peterson <benjamin@python.org> | 2014-08-24 18:04:25 -0500 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2014-08-24 18:04:25 -0500 |
commit | d475731c546eb850dc451d4508ad7138788a2a9a (patch) | |
tree | d700e79e8b9cb74596340d39fbb834fba3708102 /Lib/test/test_weakref.py | |
parent | cdcafb78b22ec1cc677abbb2ce292db79279e221 (diff) | |
parent | 18bb702182e6962c1b5e4eef96b65b8996d3ec8a (diff) | |
download | cpython-git-d475731c546eb850dc451d4508ad7138788a2a9a.tar.gz |
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 747627319b..94c98adacd 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): |