summaryrefslogtreecommitdiffstats
path: root/test/TEX
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/TEX
parentd8ff2cbc9a0848f755bdc460f9be0f74c2202738 (diff)
downloadSCons-fad26790d5c9d6ad544b426796d6ca8cd908bb95.zip
SCons-fad26790d5c9d6ad544b426796d6ca8cd908bb95.tar.gz
SCons-fad26790d5c9d6ad544b426796d6ca8cd908bb95.tar.bz2
Remove (lots) more unnecessary imports.
Diffstat (limited to 'test/TEX')
-rw-r--r--test/TEX/LATEX.py1
-rw-r--r--test/TEX/LATEX2.py4
-rw-r--r--test/TEX/LATEXCOM.py3
-rw-r--r--test/TEX/LATEXCOMSTR.py3
-rw-r--r--test/TEX/LATEXFLAGS.py1
-rw-r--r--test/TEX/PDFLATEX.py1
-rw-r--r--test/TEX/PDFLATEXCOM.py3
-rw-r--r--test/TEX/PDFLATEXCOMSTR.py3
-rw-r--r--test/TEX/PDFLATEXFLAGS.py1
-rw-r--r--test/TEX/PDFTEX.py1
-rw-r--r--test/TEX/PDFTEXCOM.py3
-rw-r--r--test/TEX/PDFTEXCOMSTR.py3
-rw-r--r--test/TEX/PDFTEXFLAGS.py1
-rw-r--r--test/TEX/TEX.py1
-rw-r--r--test/TEX/TEXCOM.py3
-rw-r--r--test/TEX/TEXCOMSTR.py3
-rw-r--r--test/TEX/TEXFLAGS.py1
-rw-r--r--test/TEX/dryrun.py4
-rw-r--r--test/TEX/rename_result.py4
-rw-r--r--test/TEX/usepackage.py4
20 files changed, 12 insertions, 36 deletions
diff --git a/test/TEX/LATEX.py b/test/TEX/LATEX.py
index d80636f..704443a 100644
--- a/test/TEX/LATEX.py
+++ b/test/TEX/LATEX.py
@@ -31,7 +31,6 @@ and that we can use this to wrap calls to the real latex utility.
"""
import os
-import os.path
import string
import sys
import TestSCons
diff --git a/test/TEX/LATEX2.py b/test/TEX/LATEX2.py
index 8ef7321..b67c2b1 100644
--- a/test/TEX/LATEX2.py
+++ b/test/TEX/LATEX2.py
@@ -29,9 +29,7 @@ Validate that we can produce several .pdf at once from several sources.
"""
import os
-import os.path
-import string
-import sys
+
import TestSCons
_python_ = TestSCons._python_
diff --git a/test/TEX/LATEXCOM.py b/test/TEX/LATEXCOM.py
index a5044ae..dee78e9 100644
--- a/test/TEX/LATEXCOM.py
+++ b/test/TEX/LATEXCOM.py
@@ -28,9 +28,8 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
Test the ability to configure the $LATEXCOM construction variable.
"""
-import os
-import string
import sys
+
import TestSCons
_python_ = TestSCons._python_
diff --git a/test/TEX/LATEXCOMSTR.py b/test/TEX/LATEXCOMSTR.py
index 08fcccb..043bab5 100644
--- a/test/TEX/LATEXCOMSTR.py
+++ b/test/TEX/LATEXCOMSTR.py
@@ -29,9 +29,8 @@ Test that the $LATEXCOMSTR construction variable allows you to configure
the C compilation output.
"""
-import os
-import string
import sys
+
import TestSCons
_python_ = TestSCons._python_
diff --git a/test/TEX/LATEXFLAGS.py b/test/TEX/LATEXFLAGS.py
index 6df1daf..568d2a8 100644
--- a/test/TEX/LATEXFLAGS.py
+++ b/test/TEX/LATEXFLAGS.py
@@ -25,7 +25,6 @@
__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
import os
-import os.path
import string
import sys
import TestSCons
diff --git a/test/TEX/PDFLATEX.py b/test/TEX/PDFLATEX.py
index 11ada7b..af8031a 100644
--- a/test/TEX/PDFLATEX.py
+++ b/test/TEX/PDFLATEX.py
@@ -31,7 +31,6 @@ and that we can use this to wrap calls to the real latex utility.
"""
import os
-import os.path
import string
import sys
import TestSCons
diff --git a/test/TEX/PDFLATEXCOM.py b/test/TEX/PDFLATEXCOM.py
index 1ce2642..1887fb0 100644
--- a/test/TEX/PDFLATEXCOM.py
+++ b/test/TEX/PDFLATEXCOM.py
@@ -28,9 +28,8 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
Test the ability to configure the $PDFLATEXCOM construction variable.
"""
-import os
-import string
import sys
+
import TestSCons
_python_ = TestSCons._python_
diff --git a/test/TEX/PDFLATEXCOMSTR.py b/test/TEX/PDFLATEXCOMSTR.py
index 284a52a..6b08d08 100644
--- a/test/TEX/PDFLATEXCOMSTR.py
+++ b/test/TEX/PDFLATEXCOMSTR.py
@@ -30,9 +30,8 @@ Test that the $PDFLATEXCOMSTR construction variable allows you to configure
the C compilation output.
"""
-import os
-import string
import sys
+
import TestSCons
_python_ = TestSCons._python_
diff --git a/test/TEX/PDFLATEXFLAGS.py b/test/TEX/PDFLATEXFLAGS.py
index 0ab76a1..07a1d54 100644
--- a/test/TEX/PDFLATEXFLAGS.py
+++ b/test/TEX/PDFLATEXFLAGS.py
@@ -25,7 +25,6 @@
__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
import os
-import os.path
import string
import sys
import TestSCons
diff --git a/test/TEX/PDFTEX.py b/test/TEX/PDFTEX.py
index cde6015..b3951f9 100644
--- a/test/TEX/PDFTEX.py
+++ b/test/TEX/PDFTEX.py
@@ -31,7 +31,6 @@ and that we can use this to wrap calls to the real latex utility.
"""
import os
-import os.path
import string
import sys
import TestSCons
diff --git a/test/TEX/PDFTEXCOM.py b/test/TEX/PDFTEXCOM.py
index f760125..6c4b6ae 100644
--- a/test/TEX/PDFTEXCOM.py
+++ b/test/TEX/PDFTEXCOM.py
@@ -28,9 +28,8 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
Test the ability to configure the $PDFTEXCOM construction variable.
"""
-import os
-import string
import sys
+
import TestSCons
_python_ = TestSCons._python_
diff --git a/test/TEX/PDFTEXCOMSTR.py b/test/TEX/PDFTEXCOMSTR.py
index ac32ae1..1332b64 100644
--- a/test/TEX/PDFTEXCOMSTR.py
+++ b/test/TEX/PDFTEXCOMSTR.py
@@ -30,9 +30,8 @@ Test that the $PDFTEXCOMSTR construction variable allows you to configure
the C compilation output.
"""
-import os
-import string
import sys
+
import TestSCons
_python_ = TestSCons._python_
diff --git a/test/TEX/PDFTEXFLAGS.py b/test/TEX/PDFTEXFLAGS.py
index 94c5466..5ae1825 100644
--- a/test/TEX/PDFTEXFLAGS.py
+++ b/test/TEX/PDFTEXFLAGS.py
@@ -25,7 +25,6 @@
__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
import os
-import os.path
import string
import sys
import TestSCons
diff --git a/test/TEX/TEX.py b/test/TEX/TEX.py
index 5a0daec..c78ad18 100644
--- a/test/TEX/TEX.py
+++ b/test/TEX/TEX.py
@@ -31,7 +31,6 @@ and that we can use this to wrap calls to the real latex utility.
"""
import os
-import os.path
import string
import sys
import TestSCons
diff --git a/test/TEX/TEXCOM.py b/test/TEX/TEXCOM.py
index cf887a4..c7a1b9a 100644
--- a/test/TEX/TEXCOM.py
+++ b/test/TEX/TEXCOM.py
@@ -28,9 +28,8 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
Test the ability to configure the $TEXCOM construction variable.
"""
-import os
-import string
import sys
+
import TestSCons
_python_ = TestSCons._python_
diff --git a/test/TEX/TEXCOMSTR.py b/test/TEX/TEXCOMSTR.py
index 66c2602..124868b 100644
--- a/test/TEX/TEXCOMSTR.py
+++ b/test/TEX/TEXCOMSTR.py
@@ -29,9 +29,8 @@ Test that the $TEXCOMSTR construction variable allows you to configure
the C compilation output.
"""
-import os
-import string
import sys
+
import TestSCons
_python_ = TestSCons._python_
diff --git a/test/TEX/TEXFLAGS.py b/test/TEX/TEXFLAGS.py
index c27ffe5..6dcf95d 100644
--- a/test/TEX/TEXFLAGS.py
+++ b/test/TEX/TEXFLAGS.py
@@ -25,7 +25,6 @@
__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
import os
-import os.path
import string
import sys
import TestSCons
diff --git a/test/TEX/dryrun.py b/test/TEX/dryrun.py
index 80458af..cf7f9ba 100644
--- a/test/TEX/dryrun.py
+++ b/test/TEX/dryrun.py
@@ -31,9 +31,7 @@ and that we can use this to wrap calls to the real latex utility.
"""
import os
-import os.path
-import string
-import sys
+
import TestSCons
_python_ = TestSCons._python_
diff --git a/test/TEX/rename_result.py b/test/TEX/rename_result.py
index e14d502..11b4ccf 100644
--- a/test/TEX/rename_result.py
+++ b/test/TEX/rename_result.py
@@ -30,9 +30,7 @@ target name provided by the user.
"""
import os
-import os.path
-import string
-import sys
+
import TestSCons
_python_ = TestSCons._python_
diff --git a/test/TEX/usepackage.py b/test/TEX/usepackage.py
index 4be7f58..e23a8fc 100644
--- a/test/TEX/usepackage.py
+++ b/test/TEX/usepackage.py
@@ -31,9 +31,7 @@ and that we can use this to wrap calls to the real latex utility.
"""
import os
-import os.path
-import string
-import sys
+
import TestSCons
_python_ = TestSCons._python_