summaryrefslogtreecommitdiffstats
path: root/test/Variables
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/Variables
parentd8ff2cbc9a0848f755bdc460f9be0f74c2202738 (diff)
downloadSCons-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.py1
-rw-r--r--test/Variables/chdir.py1
-rw-r--r--test/Variables/help.py1
-rw-r--r--test/Variables/import.py1
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())