diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-10-30 23:01:58 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-10-30 23:01:58 (GMT) |
commit | 0bbf9c99d6c871150ae41f0144ed404aa4ff318f (patch) | |
tree | 87b1ff9ebdde0fb50a258280eed172ec8f43c5e6 | |
parent | 1a7127f6df71af71ff7415e72169dcfd57da2986 (diff) | |
download | cpython-0bbf9c99d6c871150ae41f0144ed404aa4ff318f.zip cpython-0bbf9c99d6c871150ae41f0144ed404aa4ff318f.tar.gz cpython-0bbf9c99d6c871150ae41f0144ed404aa4ff318f.tar.bz2 |
kill pointless function imports
-rw-r--r-- | Lib/test/test_import.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_import.py b/Lib/test/test_import.py index 98d8a34..386ec61 100644 --- a/Lib/test/test_import.py +++ b/Lib/test/test_import.py @@ -121,7 +121,6 @@ class ImportTests(unittest.TestCase): def test_imp_module(self): # Verify that the imp module can correctly load and find .py files - import imp, os # XXX (ncoghlan): It would be nice to use support.CleanImport # here, but that breaks because the os module registers some # handlers in copy_reg on import. Since CleanImport doesn't |