diff options
Diffstat (limited to 'test/TAR')
-rw-r--r-- | test/TAR/TAR.py | 6 | ||||
-rw-r--r-- | test/TAR/TARCOM.py | 2 | ||||
-rw-r--r-- | test/TAR/TARCOMSTR.py | 2 | ||||
-rw-r--r-- | test/TAR/TARFLAGS.py | 7 |
4 files changed, 6 insertions, 11 deletions
diff --git a/test/TAR/TAR.py b/test/TAR/TAR.py index 80dea7a..ac8d791 100644 --- a/test/TAR/TAR.py +++ b/test/TAR/TAR.py @@ -25,7 +25,6 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__" import os -import string import TestSCons @@ -88,11 +87,10 @@ tar = test.detect('TAR', 'tar') if tar: test.write("wrapper.py", """import os -import string import sys open('%s', 'wb').write("wrapper.py\\n") -os.system(string.join(sys.argv[1:], " ")) -""" % string.replace(test.workpath('wrapper.out'), '\\', '\\\\')) +os.system(" ".join(sys.argv[1:])) +""" % test.workpath('wrapper.out').replace('\\', '\\\\')) test.write('SConstruct', """ foo = Environment() diff --git a/test/TAR/TARCOM.py b/test/TAR/TARCOM.py index 2a98d06..d1b3662 100644 --- a/test/TAR/TARCOM.py +++ b/test/TAR/TARCOM.py @@ -40,7 +40,7 @@ test.write('mytar.py', r""" import sys outfile = open(sys.argv[1], 'wb') infile = open(sys.argv[2], 'rb') -for l in filter(lambda l: l != '/*tar*/\n', infile.readlines()): +for l in [l for l in infile.readlines() if l != '/*tar*/\n']: outfile.write(l) sys.exit(0) """) diff --git a/test/TAR/TARCOMSTR.py b/test/TAR/TARCOMSTR.py index 70b6c69..339f0ca 100644 --- a/test/TAR/TARCOMSTR.py +++ b/test/TAR/TARCOMSTR.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 != '/*tar*/\\n', infile.readlines()): + for l in [l for l in infile.readlines() if l != '/*tar*/\\n']: outfile.write(l) sys.exit(0) """) diff --git a/test/TAR/TARFLAGS.py b/test/TAR/TARFLAGS.py index e9940a8..f349b3a 100644 --- a/test/TAR/TARFLAGS.py +++ b/test/TAR/TARFLAGS.py @@ -25,7 +25,6 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__" import os -import string import TestSCons @@ -39,7 +38,6 @@ test.write('mytar.py', """ import getopt import os import os.path -import string import sys cmd_opts, args = getopt.getopt(sys.argv[1:], 'cf:x', []) opt_string = '' @@ -95,11 +93,10 @@ tar = test.detect('TAR', 'tar') if tar: test.write("wrapper.py", """import os -import string import sys open('%s', 'wb').write("wrapper.py\\n") -os.system(string.join(sys.argv[1:], " ")) -""" % string.replace(test.workpath('wrapper.out'), '\\', '\\\\')) +os.system(" ".join(sys.argv[1:])) +""" % test.workpath('wrapper.out').replace('\\', '\\\\')) test.write('SConstruct', """ foo = Environment() |