]> granicus.if.org Git - python/commitdiff
test_gc: remove unused imports
authorVictor Stinner <victor.stinner@gmail.com>
Sat, 23 Jan 2016 12:29:02 +0000 (13:29 +0100)
committerVictor Stinner <victor.stinner@gmail.com>
Sat, 23 Jan 2016 12:29:02 +0000 (13:29 +0100)
Lib/test/test_gc.py

index 1f0867d379afd82d45c81599500049ad59d246fe..872ca62b5ed632a7941c39fdf6179c547912761d 100644 (file)
@@ -682,7 +682,6 @@ class GCTests(unittest.TestCase):
         # Create a reference cycle through the __main__ module and check
         # it gets collected at interpreter shutdown.
         code = """if 1:
-            import weakref
             class C:
                 def __del__(self):
                     print('__del__ called')
@@ -696,7 +695,6 @@ class GCTests(unittest.TestCase):
         # Same as above, but with a non-__main__ module.
         with temp_dir() as script_dir:
             module = """if 1:
-                import weakref
                 class C:
                     def __del__(self):
                         print('__del__ called')