summaryrefslogtreecommitdiffstats
path: root/test/Deprecated/Options
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/Deprecated/Options
parentd8ff2cbc9a0848f755bdc460f9be0f74c2202738 (diff)
downloadSCons-fad26790d5c9d6ad544b426796d6ca8cd908bb95.zip
SCons-fad26790d5c9d6ad544b426796d6ca8cd908bb95.tar.gz
SCons-fad26790d5c9d6ad544b426796d6ca8cd908bb95.tar.bz2
Remove (lots) more unnecessary imports.
Diffstat (limited to 'test/Deprecated/Options')
-rw-r--r--test/Deprecated/Options/ListOption.py1
-rw-r--r--test/Deprecated/Options/chdir.py1
-rw-r--r--test/Deprecated/Options/help.py1
-rw-r--r--test/Deprecated/Options/import.py1
4 files changed, 0 insertions, 4 deletions
diff --git a/test/Deprecated/Options/ListOption.py b/test/Deprecated/Options/ListOption.py
index 62792b6..369a8e1 100644
--- a/test/Deprecated/Options/ListOption.py
+++ b/test/Deprecated/Options/ListOption.py
@@ -29,7 +29,6 @@ Test the ListOption canned Option type.
"""
import os
-import os.path
import string
import TestSCons
diff --git a/test/Deprecated/Options/chdir.py b/test/Deprecated/Options/chdir.py
index dd4eb70..5d6d3ff 100644
--- a/test/Deprecated/Options/chdir.py
+++ b/test/Deprecated/Options/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/Deprecated/Options/help.py b/test/Deprecated/Options/help.py
index 2ad5253..3905c77 100644
--- a/test/Deprecated/Options/help.py
+++ b/test/Deprecated/Options/help.py
@@ -30,7 +30,6 @@ Test the Options help messages.
import os.path
import re
-import string
try:
True, False
diff --git a/test/Deprecated/Options/import.py b/test/Deprecated/Options/import.py
index 9384986..5a1627b 100644
--- a/test/Deprecated/Options/import.py
+++ b/test/Deprecated/Options/import.py
@@ -52,7 +52,6 @@ print "VARIABLE =", env.get('VARIABLE')
"""
test.write(['bin', 'opts.cfg'], """\
-import sys
from local_options import VARIABLE
""" % locals())