summaryrefslogtreecommitdiffstats
path: root/test/TEX
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2009-02-11 17:57:38 (GMT)
committerSteven Knight <knight@baldmt.com>2009-02-11 17:57:38 (GMT)
commita33fd40cf855819ce49a3c93a831cb28a97a0177 (patch)
tree9207b31537e85de793ef3cdcc9a18be689ce2805 /test/TEX
parent33b254500d0cb179b4446537482905748ff32cf9 (diff)
downloadSCons-a33fd40cf855819ce49a3c93a831cb28a97a0177.zip
SCons-a33fd40cf855819ce49a3c93a831cb28a97a0177.tar.gz
SCons-a33fd40cf855819ce49a3c93a831cb28a97a0177.tar.bz2
Remove more unnecessary imports from test scripts.
Diffstat (limited to 'test/TEX')
-rw-r--r--test/TEX/LATEX.py3
-rw-r--r--test/TEX/LATEX2.py2
-rw-r--r--test/TEX/LATEXCOM.py2
-rw-r--r--test/TEX/LATEXCOMSTR.py2
-rw-r--r--test/TEX/LATEXFLAGS.py2
-rw-r--r--test/TEX/PDFLATEX.py3
-rw-r--r--test/TEX/PDFLATEXCOM.py2
-rw-r--r--test/TEX/PDFLATEXCOMSTR.py2
-rw-r--r--test/TEX/PDFLATEXFLAGS.py2
-rw-r--r--test/TEX/PDFTEX.py3
-rw-r--r--test/TEX/PDFTEXCOM.py2
-rw-r--r--test/TEX/PDFTEXCOMSTR.py2
-rw-r--r--test/TEX/PDFTEXFLAGS.py2
-rw-r--r--test/TEX/TEX.py3
-rw-r--r--test/TEX/TEXCOM.py2
-rw-r--r--test/TEX/TEXCOMSTR.py2
-rw-r--r--test/TEX/TEXFLAGS.py2
-rw-r--r--test/TEX/dryrun.py2
-rw-r--r--test/TEX/rename_result.py2
-rw-r--r--test/TEX/usepackage.py2
20 files changed, 8 insertions, 36 deletions
diff --git a/test/TEX/LATEX.py b/test/TEX/LATEX.py
index a45b032..fff98df 100644
--- a/test/TEX/LATEX.py
+++ b/test/TEX/LATEX.py
@@ -30,9 +30,8 @@ the produced .dvi, .aux and .log files get removed by the -c option,
and that we can use this to wrap calls to the real latex utility.
"""
-import os
import string
-import sys
+
import TestSCons
_python_ = TestSCons._python_
diff --git a/test/TEX/LATEX2.py b/test/TEX/LATEX2.py
index 9e4145c..8f4eaac 100644
--- a/test/TEX/LATEX2.py
+++ b/test/TEX/LATEX2.py
@@ -28,8 +28,6 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
Validate that we can produce several .pdf at once from several sources.
"""
-import os
-
import TestSCons
_python_ = TestSCons._python_
diff --git a/test/TEX/LATEXCOM.py b/test/TEX/LATEXCOM.py
index 81ab3de..9d65134 100644
--- a/test/TEX/LATEXCOM.py
+++ b/test/TEX/LATEXCOM.py
@@ -28,8 +28,6 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
Test the ability to configure the $LATEXCOM construction variable.
"""
-import sys
-
import TestSCons
_python_ = TestSCons._python_
diff --git a/test/TEX/LATEXCOMSTR.py b/test/TEX/LATEXCOMSTR.py
index 0a212fe..9383e87 100644
--- a/test/TEX/LATEXCOMSTR.py
+++ b/test/TEX/LATEXCOMSTR.py
@@ -29,8 +29,6 @@ Test that the $LATEXCOMSTR construction variable allows you to configure
the C compilation output.
"""
-import sys
-
import TestSCons
_python_ = TestSCons._python_
diff --git a/test/TEX/LATEXFLAGS.py b/test/TEX/LATEXFLAGS.py
index ff1bf52..8c4e707 100644
--- a/test/TEX/LATEXFLAGS.py
+++ b/test/TEX/LATEXFLAGS.py
@@ -26,7 +26,7 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
import os
import string
-import sys
+
import TestSCons
_python_ = TestSCons._python_
diff --git a/test/TEX/PDFLATEX.py b/test/TEX/PDFLATEX.py
index 1d7f449..a7e68aa 100644
--- a/test/TEX/PDFLATEX.py
+++ b/test/TEX/PDFLATEX.py
@@ -30,9 +30,8 @@ the produced .dvi, .aux and .log files get removed by the -c option,
and that we can use this to wrap calls to the real latex utility.
"""
-import os
import string
-import sys
+
import TestSCons
_python_ = TestSCons._python_
diff --git a/test/TEX/PDFLATEXCOM.py b/test/TEX/PDFLATEXCOM.py
index b05052a..36372a8 100644
--- a/test/TEX/PDFLATEXCOM.py
+++ b/test/TEX/PDFLATEXCOM.py
@@ -28,8 +28,6 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
Test the ability to configure the $PDFLATEXCOM construction variable.
"""
-import sys
-
import TestSCons
_python_ = TestSCons._python_
diff --git a/test/TEX/PDFLATEXCOMSTR.py b/test/TEX/PDFLATEXCOMSTR.py
index 2e9ba8a..e91ba87 100644
--- a/test/TEX/PDFLATEXCOMSTR.py
+++ b/test/TEX/PDFLATEXCOMSTR.py
@@ -30,8 +30,6 @@ Test that the $PDFLATEXCOMSTR construction variable allows you to configure
the C compilation output.
"""
-import sys
-
import TestSCons
_python_ = TestSCons._python_
diff --git a/test/TEX/PDFLATEXFLAGS.py b/test/TEX/PDFLATEXFLAGS.py
index f007277..19c7e5a 100644
--- a/test/TEX/PDFLATEXFLAGS.py
+++ b/test/TEX/PDFLATEXFLAGS.py
@@ -26,7 +26,7 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
import os
import string
-import sys
+
import TestSCons
_python_ = TestSCons._python_
diff --git a/test/TEX/PDFTEX.py b/test/TEX/PDFTEX.py
index 61fac1e..1562b20 100644
--- a/test/TEX/PDFTEX.py
+++ b/test/TEX/PDFTEX.py
@@ -30,9 +30,8 @@ the produced .dvi, .aux and .log files get removed by the -c option,
and that we can use this to wrap calls to the real latex utility.
"""
-import os
import string
-import sys
+
import TestSCons
_python_ = TestSCons._python_
diff --git a/test/TEX/PDFTEXCOM.py b/test/TEX/PDFTEXCOM.py
index b6b5875..6d57f2c 100644
--- a/test/TEX/PDFTEXCOM.py
+++ b/test/TEX/PDFTEXCOM.py
@@ -28,8 +28,6 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
Test the ability to configure the $PDFTEXCOM construction variable.
"""
-import sys
-
import TestSCons
_python_ = TestSCons._python_
diff --git a/test/TEX/PDFTEXCOMSTR.py b/test/TEX/PDFTEXCOMSTR.py
index e1fbc5c..8caa4e3 100644
--- a/test/TEX/PDFTEXCOMSTR.py
+++ b/test/TEX/PDFTEXCOMSTR.py
@@ -30,8 +30,6 @@ Test that the $PDFTEXCOMSTR construction variable allows you to configure
the C compilation output.
"""
-import sys
-
import TestSCons
_python_ = TestSCons._python_
diff --git a/test/TEX/PDFTEXFLAGS.py b/test/TEX/PDFTEXFLAGS.py
index eb78ec8..d1b82fe 100644
--- a/test/TEX/PDFTEXFLAGS.py
+++ b/test/TEX/PDFTEXFLAGS.py
@@ -26,7 +26,7 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
import os
import string
-import sys
+
import TestSCons
_python_ = TestSCons._python_
diff --git a/test/TEX/TEX.py b/test/TEX/TEX.py
index 3b2a6be..99a69fe 100644
--- a/test/TEX/TEX.py
+++ b/test/TEX/TEX.py
@@ -30,9 +30,8 @@ the produced .dvi, .aux and .log files get removed by the -c option,
and that we can use this to wrap calls to the real latex utility.
"""
-import os
import string
-import sys
+
import TestSCons
_python_ = TestSCons._python_
diff --git a/test/TEX/TEXCOM.py b/test/TEX/TEXCOM.py
index 0224341..6336730 100644
--- a/test/TEX/TEXCOM.py
+++ b/test/TEX/TEXCOM.py
@@ -28,8 +28,6 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
Test the ability to configure the $TEXCOM construction variable.
"""
-import sys
-
import TestSCons
_python_ = TestSCons._python_
diff --git a/test/TEX/TEXCOMSTR.py b/test/TEX/TEXCOMSTR.py
index 6c0e1f9..d4ebe57 100644
--- a/test/TEX/TEXCOMSTR.py
+++ b/test/TEX/TEXCOMSTR.py
@@ -29,8 +29,6 @@ Test that the $TEXCOMSTR construction variable allows you to configure
the C compilation output.
"""
-import sys
-
import TestSCons
_python_ = TestSCons._python_
diff --git a/test/TEX/TEXFLAGS.py b/test/TEX/TEXFLAGS.py
index 1f9a2e1..efb6606 100644
--- a/test/TEX/TEXFLAGS.py
+++ b/test/TEX/TEXFLAGS.py
@@ -26,7 +26,7 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
import os
import string
-import sys
+
import TestSCons
_python_ = TestSCons._python_
diff --git a/test/TEX/dryrun.py b/test/TEX/dryrun.py
index bf1088f..adbc0b6 100644
--- a/test/TEX/dryrun.py
+++ b/test/TEX/dryrun.py
@@ -30,8 +30,6 @@ the produced .dvi, .aux and .log files get removed by the -c option,
and that we can use this to wrap calls to the real latex utility.
"""
-import os
-
import TestSCons
_python_ = TestSCons._python_
diff --git a/test/TEX/rename_result.py b/test/TEX/rename_result.py
index 678d6da..0f098d0 100644
--- a/test/TEX/rename_result.py
+++ b/test/TEX/rename_result.py
@@ -29,8 +29,6 @@ Validate that we can rename the output from latex to the
target name provided by the user.
"""
-import os
-
import TestSCons
_python_ = TestSCons._python_
diff --git a/test/TEX/usepackage.py b/test/TEX/usepackage.py
index 136864c..aa7e79f 100644
--- a/test/TEX/usepackage.py
+++ b/test/TEX/usepackage.py
@@ -30,8 +30,6 @@ the produced .dvi, .aux and .log files get removed by the -c option,
and that we can use this to wrap calls to the real latex utility.
"""
-import os
-
import TestSCons
_python_ = TestSCons._python_