summaryrefslogtreecommitdiffstats
path: root/test/Win32
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2009-02-06 18:36:10 (GMT)
committerSteven Knight <knight@baldmt.com>2009-02-06 18:36:10 (GMT)
commitfad26790d5c9d6ad544b426796d6ca8cd908bb95 (patch)
tree7baba507756d614ac4b146011916abe5d41d3626 /test/Win32
parentd8ff2cbc9a0848f755bdc460f9be0f74c2202738 (diff)
downloadSCons-fad26790d5c9d6ad544b426796d6ca8cd908bb95.zip
SCons-fad26790d5c9d6ad544b426796d6ca8cd908bb95.tar.gz
SCons-fad26790d5c9d6ad544b426796d6ca8cd908bb95.tar.bz2
Remove (lots) more unnecessary imports.
Diffstat (limited to 'test/Win32')
-rw-r--r--test/Win32/bad-drive.py1
-rw-r--r--test/Win32/default-drive.py2
-rw-r--r--test/Win32/mingw.py9
3 files changed, 4 insertions, 8 deletions
diff --git a/test/Win32/bad-drive.py b/test/Win32/bad-drive.py
index 4961386..5b473bc 100644
--- a/test/Win32/bad-drive.py
+++ b/test/Win32/bad-drive.py
@@ -31,7 +31,6 @@ with an invalid drive letter.
__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
import os
-import os.path
import string
import sys
diff --git a/test/Win32/default-drive.py b/test/Win32/default-drive.py
index 94d8377..9c17c19 100644
--- a/test/Win32/default-drive.py
+++ b/test/Win32/default-drive.py
@@ -31,8 +31,6 @@ file's drive as the default.
__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
import os
-import os.path
-import string
import sys
import TestSCons
diff --git a/test/Win32/mingw.py b/test/Win32/mingw.py
index fac8910..feb5373 100644
--- a/test/Win32/mingw.py
+++ b/test/Win32/mingw.py
@@ -28,13 +28,12 @@ This tests the MinGW C/C++ compiler support.
__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
-import TestSCons
-import sys
-import os.path
import os
-import TestCmd
-import time
import string
+import sys
+
+import TestSCons
+import TestCmd
test = TestSCons.TestSCons(match = TestCmd.match_re_dotall)