diff options
author | Christian Heimes <christian@cheimes.de> | 2008-02-23 17:40:11 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2008-02-23 17:40:11 (GMT) |
commit | c5f05e45cffa16f45f1332cec531c045893f928f (patch) | |
tree | 51fbf302701bf546b81153ddacd5cce88fd25549 /Lib/test/test_site.py | |
parent | 19aff0c90a1632fce527d7c81769ba419184700c (diff) | |
download | cpython-c5f05e45cffa16f45f1332cec531c045893f928f.zip cpython-c5f05e45cffa16f45f1332cec531c045893f928f.tar.gz cpython-c5f05e45cffa16f45f1332cec531c045893f928f.tar.bz2 |
Patch #2167 from calvin: Remove unused imports
Diffstat (limited to 'Lib/test/test_site.py')
-rw-r--r-- | Lib/test/test_site.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/test/test_site.py b/Lib/test/test_site.py index 3a8b9d3..c9957df 100644 --- a/Lib/test/test_site.py +++ b/Lib/test/test_site.py @@ -5,12 +5,11 @@ executing have not been removed. """ import unittest -from test.test_support import TestSkipped, TestFailed, run_unittest, TESTFN +from test.test_support import TestSkipped, run_unittest, TESTFN import __builtin__ import os import sys import encodings -import tempfile # Need to make sure to not import 'site' if someone specified ``-S`` at the # command-line. Detect this by just making sure 'site' has not been imported # already. |