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/Variables | |
parent | d8ff2cbc9a0848f755bdc460f9be0f74c2202738 (diff) | |
download | SCons-fad26790d5c9d6ad544b426796d6ca8cd908bb95.zip SCons-fad26790d5c9d6ad544b426796d6ca8cd908bb95.tar.gz SCons-fad26790d5c9d6ad544b426796d6ca8cd908bb95.tar.bz2 |
Remove (lots) more unnecessary imports.
Diffstat (limited to 'test/Variables')
-rw-r--r-- | test/Variables/ListVariable.py | 1 | ||||
-rw-r--r-- | test/Variables/chdir.py | 1 | ||||
-rw-r--r-- | test/Variables/help.py | 1 | ||||
-rw-r--r-- | test/Variables/import.py | 1 |
4 files changed, 0 insertions, 4 deletions
diff --git a/test/Variables/ListVariable.py b/test/Variables/ListVariable.py index 740698b..8c6c777 100644 --- a/test/Variables/ListVariable.py +++ b/test/Variables/ListVariable.py @@ -29,7 +29,6 @@ Test the ListVariable canned Variable type. """ import os -import os.path import string import TestSCons diff --git a/test/Variables/chdir.py b/test/Variables/chdir.py index ad907c6..87e9657 100644 --- a/test/Variables/chdir.py +++ b/test/Variables/chdir.py @@ -51,7 +51,6 @@ print "VARIABLE =", repr(env['VARIABLE']) test.write(['bin', 'opts.cfg'], """\ import os -import os.path os.chdir(os.path.split(__name__)[0]) execfile('opts2.cfg') """) diff --git a/test/Variables/help.py b/test/Variables/help.py index dcea68e..acfdbd6 100644 --- a/test/Variables/help.py +++ b/test/Variables/help.py @@ -29,7 +29,6 @@ Test the Variables help messages. """ import os.path -import string try: True, False diff --git a/test/Variables/import.py b/test/Variables/import.py index 899870b..182ed26 100644 --- a/test/Variables/import.py +++ b/test/Variables/import.py @@ -52,7 +52,6 @@ print "VARIABLE =", env.get('VARIABLE') """ test.write(['bin', 'opts.cfg'], """\ -import sys from local_options import VARIABLE """ % locals()) |