diff options
author | Steven Knight <knight@baldmt.com> | 2009-02-06 18:36:10 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2009-02-06 18:36:10 (GMT) |
commit | fad26790d5c9d6ad544b426796d6ca8cd908bb95 (patch) | |
tree | 7baba507756d614ac4b146011916abe5d41d3626 /test/option | |
parent | d8ff2cbc9a0848f755bdc460f9be0f74c2202738 (diff) | |
download | SCons-fad26790d5c9d6ad544b426796d6ca8cd908bb95.zip SCons-fad26790d5c9d6ad544b426796d6ca8cd908bb95.tar.gz SCons-fad26790d5c9d6ad544b426796d6ca8cd908bb95.tar.bz2 |
Remove (lots) more unnecessary imports.
Diffstat (limited to 'test/option')
-rw-r--r-- | test/option/debug-count.py | 5 | ||||
-rw-r--r-- | test/option/debug-findlibs.py | 5 | ||||
-rw-r--r-- | test/option/debug-includes.py | 3 | ||||
-rw-r--r-- | test/option/debug-memory.py | 7 | ||||
-rw-r--r-- | test/option/debug-objects.py | 4 | ||||
-rw-r--r-- | test/option/tree-all.py | 2 | ||||
-rw-r--r-- | test/option/tree-derived.py | 3 | ||||
-rw-r--r-- | test/option/tree-lib.py | 2 |
8 files changed, 5 insertions, 26 deletions
diff --git a/test/option/debug-count.py b/test/option/debug-count.py index d301312..11ad66f 100644 --- a/test/option/debug-count.py +++ b/test/option/debug-count.py @@ -28,11 +28,10 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__" Test that the --debug=count option works. """ -import TestSCons -import sys import string import re -import time + +import TestSCons test = TestSCons.TestSCons() diff --git a/test/option/debug-findlibs.py b/test/option/debug-findlibs.py index 4220402..70fa5b8 100644 --- a/test/option/debug-findlibs.py +++ b/test/option/debug-findlibs.py @@ -24,11 +24,6 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__" -import sys -import string -import re -import time - import TestSCons _python_ = TestSCons._python_ diff --git a/test/option/debug-includes.py b/test/option/debug-includes.py index b923306..1b7d363 100644 --- a/test/option/debug-includes.py +++ b/test/option/debug-includes.py @@ -30,9 +30,6 @@ dependencies of a target. """ import TestSCons -import sys -import re -import time test = TestSCons.TestSCons() diff --git a/test/option/debug-memory.py b/test/option/debug-memory.py index 9ed674e..b130ab9 100644 --- a/test/option/debug-memory.py +++ b/test/option/debug-memory.py @@ -28,11 +28,10 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__" Test that the --debug=memory option works. """ -import TestSCons -import sys -import string import re -import time +import string + +import TestSCons test = TestSCons.TestSCons() diff --git a/test/option/debug-objects.py b/test/option/debug-objects.py index 33ec59d..1d3829a 100644 --- a/test/option/debug-objects.py +++ b/test/option/debug-objects.py @@ -29,10 +29,6 @@ Test that the --debug=objects option works. """ import TestSCons -import sys -import string -import re -import time test = TestSCons.TestSCons() diff --git a/test/option/tree-all.py b/test/option/tree-all.py index d569b31..aa92936 100644 --- a/test/option/tree-all.py +++ b/test/option/tree-all.py @@ -32,8 +32,6 @@ complete dependencies of a target. import TestSCons import sys import string -import re -import time test = TestSCons.TestSCons() diff --git a/test/option/tree-derived.py b/test/option/tree-derived.py index 3f7cb45..3ec33d7 100644 --- a/test/option/tree-derived.py +++ b/test/option/tree-derived.py @@ -30,9 +30,6 @@ dependencies (sources or Depends()) of a target. """ import TestSCons -import sys -import re -import time test = TestSCons.TestSCons() diff --git a/test/option/tree-lib.py b/test/option/tree-lib.py index d1fdcd2..c9293c2 100644 --- a/test/option/tree-lib.py +++ b/test/option/tree-lib.py @@ -33,8 +33,6 @@ on disk.) Issue 1363: http://scons.tigris.org/issues/show_bug.cgi?id=1363 """ -import sys - import TestSCons test = TestSCons.TestSCons() |