summaryrefslogtreecommitdiff
path: root/test/Variables
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2009-02-06 18:36:10 +0000
committerSteven Knight <knight@baldmt.com>2009-02-06 18:36:10 +0000
commit21ae9d785d6b9b119e25efc19446bb86ed459df8 (patch)
tree7baba507756d614ac4b146011916abe5d41d3626 /test/Variables
parent2e0c4d2187fa7545c47d9fea7f4f1fb25149fef0 (diff)
downloadscons-21ae9d785d6b9b119e25efc19446bb86ed459df8.tar.gz
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 740698bb..8c6c777b 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 ad907c66..87e9657c 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 dcea68e0..acfdbd67 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 899870ba..182ed263 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())