diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-05-31 14:43:00 +0000 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-05-31 14:43:00 +0000 |
commit | 382ccdfd5bb1529c81187313165fd08bf9ca66fe (patch) | |
tree | e07c5379cdfd6fb7201e67fa7b4999f4f40039d9 | |
parent | 4698d9928ef1547e86a3f692e0c8d77e3f5e869c (diff) | |
download | cpython-git-382ccdfd5bb1529c81187313165fd08bf9ca66fe.tar.gz |
remove function import
-rw-r--r-- | Lib/test/test_support.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py index 8656189a91..6f7b2397d6 100644 --- a/Lib/test/test_support.py +++ b/Lib/test/test_support.py @@ -6,6 +6,7 @@ if __name__ != 'test.test_support': import contextlib import errno import functools +import gc import socket import sys import os @@ -644,7 +645,6 @@ def gc_collect(): longer than expected. This function tries its best to force all garbage objects to disappear. """ - import gc gc.collect() gc.collect() gc.collect() |