diff options
Diffstat (limited to 'test/Ghostscript')
-rw-r--r-- | test/Ghostscript/GS.py | 6 | ||||
-rw-r--r-- | test/Ghostscript/GSCOM.py | 2 | ||||
-rw-r--r-- | test/Ghostscript/GSCOMSTR.py | 2 | ||||
-rw-r--r-- | test/Ghostscript/GSFLAGS.py | 6 |
4 files changed, 6 insertions, 10 deletions
diff --git a/test/Ghostscript/GS.py b/test/Ghostscript/GS.py index c2e5dd7..2cae8b8 100644 --- a/test/Ghostscript/GS.py +++ b/test/Ghostscript/GS.py @@ -25,7 +25,6 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__" import os -import string import sys import TestSCons @@ -76,12 +75,11 @@ if gs: test.write("wrapper.py", """\ import os -import string import sys -cmd = string.join(sys.argv[1:], " ") +cmd = " ".join(sys.argv[1:]) open('%s', 'ab').write("%%s\\n" %% cmd) os.system(cmd) -""" % string.replace(test.workpath('wrapper.out'), '\\', '\\\\')) +""" % test.workpath('wrapper.out').replace('\\', '\\\\')) test.write('SConstruct', """\ import os diff --git a/test/Ghostscript/GSCOM.py b/test/Ghostscript/GSCOM.py index b43bc19..c86f8b6 100644 --- a/test/Ghostscript/GSCOM.py +++ b/test/Ghostscript/GSCOM.py @@ -41,7 +41,7 @@ import sys outfile = open(sys.argv[1], 'wb') for f in sys.argv[2:]: infile = open(f, 'rb') - for l in filter(lambda l: l != '/*gs*/\\n', infile.readlines()): + for l in [l for l in infile.readlines() if l != '/*gs*/\\n']: outfile.write(l) sys.exit(0) """) diff --git a/test/Ghostscript/GSCOMSTR.py b/test/Ghostscript/GSCOMSTR.py index acd1132..b39cf4f 100644 --- a/test/Ghostscript/GSCOMSTR.py +++ b/test/Ghostscript/GSCOMSTR.py @@ -42,7 +42,7 @@ import sys outfile = open(sys.argv[1], 'wb') for f in sys.argv[2:]: infile = open(f, 'rb') - for l in filter(lambda l: l != '/*gs*/\\n', infile.readlines()): + for l in [l for l in infile.readlines() if l != '/*gs*/\\n']: outfile.write(l) sys.exit(0) """) diff --git a/test/Ghostscript/GSFLAGS.py b/test/Ghostscript/GSFLAGS.py index 057977e..16ad6c1 100644 --- a/test/Ghostscript/GSFLAGS.py +++ b/test/Ghostscript/GSFLAGS.py @@ -25,7 +25,6 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__" import os -import string import sys import TestSCons @@ -84,12 +83,11 @@ gs = test.where_is(gs_executable) if gs: test.write("wrapper.py", """import os -import string import sys -cmd = string.join(sys.argv[1:], " ") +cmd = " ".join(sys.argv[1:]) open('%s', 'ab').write("%%s\\n" %% cmd) os.system(cmd) -""" % string.replace(test.workpath('wrapper.out'), '\\', '\\\\')) +""" % test.workpath('wrapper.out').replace('\\', '\\\\')) test.write('SConstruct', """\ import os |