mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30:19 +00:00
test_gc: remove unused imports
This commit is contained in:
parent
9fa812668f
commit
843a1fb1e7
1 changed files with 0 additions and 2 deletions
|
|
@ -682,7 +682,6 @@ class GCTests(unittest.TestCase):
|
||||||
# Create a reference cycle through the __main__ module and check
|
# Create a reference cycle through the __main__ module and check
|
||||||
# it gets collected at interpreter shutdown.
|
# it gets collected at interpreter shutdown.
|
||||||
code = """if 1:
|
code = """if 1:
|
||||||
import weakref
|
|
||||||
class C:
|
class C:
|
||||||
def __del__(self):
|
def __del__(self):
|
||||||
print('__del__ called')
|
print('__del__ called')
|
||||||
|
|
@ -696,7 +695,6 @@ class GCTests(unittest.TestCase):
|
||||||
# Same as above, but with a non-__main__ module.
|
# Same as above, but with a non-__main__ module.
|
||||||
with temp_dir() as script_dir:
|
with temp_dir() as script_dir:
|
||||||
module = """if 1:
|
module = """if 1:
|
||||||
import weakref
|
|
||||||
class C:
|
class C:
|
||||||
def __del__(self):
|
def __del__(self):
|
||||||
print('__del__ called')
|
print('__del__ called')
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue