From: Victor Stinner Date: Sat, 23 Jan 2016 12:29:02 +0000 (+0100) Subject: test_gc: remove unused imports X-Git-Tag: v3.6.0a1~705 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=843a1fb1e78bf2d374daccaaa5c616f63afdf053;p=python test_gc: remove unused imports --- diff --git a/Lib/test/test_gc.py b/Lib/test/test_gc.py index 1f0867d379..872ca62b5e 100644 --- a/Lib/test/test_gc.py +++ b/Lib/test/test_gc.py @@ -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')