diff options
| author | Victor Stinner <victor.stinner@gmail.com> | 2016-01-23 12:29:02 (GMT) |
|---|---|---|
| committer | Victor Stinner <victor.stinner@gmail.com> | 2016-01-23 12:29:02 (GMT) |
| commit | 843a1fb1e78bf2d374daccaaa5c616f63afdf053 (patch) | |
| tree | a2c95bbb01fe7eed5c59f5c9bcbc69edf5c3c125 /Lib/test | |
| parent | 9fa812668faf0d2d7839845e1a0da19b87bdbc29 (diff) | |
| download | cpython-843a1fb1e78bf2d374daccaaa5c616f63afdf053.zip cpython-843a1fb1e78bf2d374daccaaa5c616f63afdf053.tar.gz cpython-843a1fb1e78bf2d374daccaaa5c616f63afdf053.tar.bz2 | |
test_gc: remove unused imports
Diffstat (limited to 'Lib/test')
| -rw-r--r-- | Lib/test/test_gc.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/test/test_gc.py b/Lib/test/test_gc.py index 1f0867d..872ca62 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') |
