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/Install | |
parent | d8ff2cbc9a0848f755bdc460f9be0f74c2202738 (diff) | |
download | SCons-fad26790d5c9d6ad544b426796d6ca8cd908bb95.zip SCons-fad26790d5c9d6ad544b426796d6ca8cd908bb95.tar.gz SCons-fad26790d5c9d6ad544b426796d6ca8cd908bb95.tar.bz2 |
Remove (lots) more unnecessary imports.
Diffstat (limited to 'test/Install')
-rw-r--r-- | test/Install/Install.py | 2 | ||||
-rw-r--r-- | test/Install/InstallAs.py | 2 | ||||
-rw-r--r-- | test/Install/directories.py | 4 | ||||
-rw-r--r-- | test/Install/option--install-sandbox.py | 2 |
4 files changed, 4 insertions, 6 deletions
diff --git a/test/Install/Install.py b/test/Install/Install.py index c38edaa..8c52015 100644 --- a/test/Install/Install.py +++ b/test/Install/Install.py @@ -30,8 +30,8 @@ Verify that the Install() Builder works import os.path import string -import sys import time + import TestSCons test = TestSCons.TestSCons() diff --git a/test/Install/InstallAs.py b/test/Install/InstallAs.py index 8b279f1..ba83259 100644 --- a/test/Install/InstallAs.py +++ b/test/Install/InstallAs.py @@ -29,7 +29,7 @@ Test the InstallAs() Environment method. """ import os.path -import sys + import TestSCons test = TestSCons.TestSCons() diff --git a/test/Install/directories.py b/test/Install/directories.py index 3005859..5a795af 100644 --- a/test/Install/directories.py +++ b/test/Install/directories.py @@ -29,9 +29,7 @@ Test using Install() on directories. """ import os.path -import string -import sys -import time + import TestSCons test = TestSCons.TestSCons() diff --git a/test/Install/option--install-sandbox.py b/test/Install/option--install-sandbox.py index 3ec5b3b..32e61a1 100644 --- a/test/Install/option--install-sandbox.py +++ b/test/Install/option--install-sandbox.py @@ -29,7 +29,7 @@ Test the --install-sandbox commandline option for Install() and InstallAs(). """ import os.path -import sys + import TestSCons test = TestSCons.TestSCons() |