diff options
author | Greg Noel <GregNoel@tigris.org> | 2010-03-25 04:14:28 (GMT) |
---|---|---|
committer | Greg Noel <GregNoel@tigris.org> | 2010-03-25 04:14:28 (GMT) |
commit | 22d352500f1cd6bd0c53d788a5dc44a1fefa676e (patch) | |
tree | 0984fd581082c27cfbfbb7f94d5751b0e6fd2741 /test/Rpcgen | |
parent | 75ac32ac8e32076e25b72a19eb56340cc585fa4e (diff) | |
download | SCons-22d352500f1cd6bd0c53d788a5dc44a1fefa676e.zip SCons-22d352500f1cd6bd0c53d788a5dc44a1fefa676e.tar.gz SCons-22d352500f1cd6bd0c53d788a5dc44a1fefa676e.tar.bz2 |
Move 2.0 changes collected in branches/pending back to trunk for further
development. Note that this set of changes is NOT backward-compatible;
the trunk no longer works with Python 1.5.2, 2.0, or 2.1.
Diffstat (limited to 'test/Rpcgen')
-rw-r--r-- | test/Rpcgen/RPCGEN.py | 5 | ||||
-rw-r--r-- | test/Rpcgen/RPCGENCLIENTFLAGS.py | 5 | ||||
-rw-r--r-- | test/Rpcgen/RPCGENFLAGS.py | 5 | ||||
-rw-r--r-- | test/Rpcgen/RPCGENHEADERFLAGS.py | 5 | ||||
-rw-r--r-- | test/Rpcgen/RPCGENSERVICEFLAGS.py | 5 | ||||
-rw-r--r-- | test/Rpcgen/RPCGENXDRFLAGS.py | 5 |
6 files changed, 12 insertions, 18 deletions
diff --git a/test/Rpcgen/RPCGEN.py b/test/Rpcgen/RPCGEN.py index 5fde5df..dd3669b 100644 --- a/test/Rpcgen/RPCGEN.py +++ b/test/Rpcgen/RPCGEN.py @@ -35,15 +35,14 @@ test = TestSCons.TestSCons() test.write('myrpcgen.py', """ import getopt -import string import sys cmd_opts, args = getopt.getopt(sys.argv[1:], 'chlmo:', []) for opt, arg in cmd_opts: if opt == '-o': output = open(arg, 'wb') -output.write(string.join(sys.argv) + "\\n") +output.write(" ".join(sys.argv) + "\\n") for a in args: contents = open(a, 'rb').read() - output.write(string.replace(contents, 'RPCGEN', 'myrpcgen.py')) + output.write(contents.replace('RPCGEN', 'myrpcgen.py')) output.close() sys.exit(0) """) diff --git a/test/Rpcgen/RPCGENCLIENTFLAGS.py b/test/Rpcgen/RPCGENCLIENTFLAGS.py index 4b0d24f..7cf0144 100644 --- a/test/Rpcgen/RPCGENCLIENTFLAGS.py +++ b/test/Rpcgen/RPCGENCLIENTFLAGS.py @@ -35,15 +35,14 @@ test = TestSCons.TestSCons() test.write('myrpcgen.py', """ import getopt -import string import sys cmd_opts, args = getopt.getopt(sys.argv[1:], 'chlmo:x', []) for opt, arg in cmd_opts: if opt == '-o': output = open(arg, 'wb') -output.write(string.join(sys.argv) + "\\n") +output.write(" ".join(sys.argv) + "\\n") for a in args: contents = open(a, 'rb').read() - output.write(string.replace(contents, 'RPCGEN', 'myrpcgen.py')) + output.write(contents.replace('RPCGEN', 'myrpcgen.py')) output.close() sys.exit(0) """) diff --git a/test/Rpcgen/RPCGENFLAGS.py b/test/Rpcgen/RPCGENFLAGS.py index ddbc745..4af5da8 100644 --- a/test/Rpcgen/RPCGENFLAGS.py +++ b/test/Rpcgen/RPCGENFLAGS.py @@ -35,15 +35,14 @@ test = TestSCons.TestSCons() test.write('myrpcgen.py', """ import getopt -import string import sys cmd_opts, args = getopt.getopt(sys.argv[1:], 'chlmo:x', []) for opt, arg in cmd_opts: if opt == '-o': output = open(arg, 'wb') -output.write(string.join(sys.argv) + "\\n") +output.write(" ".join(sys.argv) + "\\n") for a in args: contents = open(a, 'rb').read() - output.write(string.replace(contents, 'RPCGEN', 'myrpcgen.py')) + output.write(contents.replace('RPCGEN', 'myrpcgen.py')) output.close() sys.exit(0) """) diff --git a/test/Rpcgen/RPCGENHEADERFLAGS.py b/test/Rpcgen/RPCGENHEADERFLAGS.py index 3eac78f..0c93fe7 100644 --- a/test/Rpcgen/RPCGENHEADERFLAGS.py +++ b/test/Rpcgen/RPCGENHEADERFLAGS.py @@ -35,15 +35,14 @@ test = TestSCons.TestSCons() test.write('myrpcgen.py', """ import getopt -import string import sys cmd_opts, args = getopt.getopt(sys.argv[1:], 'chlmo:x', []) for opt, arg in cmd_opts: if opt == '-o': output = open(arg, 'wb') -output.write(string.join(sys.argv) + "\\n") +output.write(" ".join(sys.argv) + "\\n") for a in args: contents = open(a, 'rb').read() - output.write(string.replace(contents, 'RPCGEN', 'myrpcgen.py')) + output.write(contents.replace('RPCGEN', 'myrpcgen.py')) output.close() sys.exit(0) """) diff --git a/test/Rpcgen/RPCGENSERVICEFLAGS.py b/test/Rpcgen/RPCGENSERVICEFLAGS.py index eee4505..9b8962f 100644 --- a/test/Rpcgen/RPCGENSERVICEFLAGS.py +++ b/test/Rpcgen/RPCGENSERVICEFLAGS.py @@ -35,15 +35,14 @@ test = TestSCons.TestSCons() test.write('myrpcgen.py', """ import getopt -import string import sys cmd_opts, args = getopt.getopt(sys.argv[1:], 'chlmo:x', []) for opt, arg in cmd_opts: if opt == '-o': output = open(arg, 'wb') -output.write(string.join(sys.argv) + "\\n") +output.write(" ".join(sys.argv) + "\\n") for a in args: contents = open(a, 'rb').read() - output.write(string.replace(contents, 'RPCGEN', 'myrpcgen.py')) + output.write(contents.replace('RPCGEN', 'myrpcgen.py')) output.close() sys.exit(0) """) diff --git a/test/Rpcgen/RPCGENXDRFLAGS.py b/test/Rpcgen/RPCGENXDRFLAGS.py index c9a911a..8f90d5a 100644 --- a/test/Rpcgen/RPCGENXDRFLAGS.py +++ b/test/Rpcgen/RPCGENXDRFLAGS.py @@ -35,15 +35,14 @@ test = TestSCons.TestSCons() test.write('myrpcgen.py', """ import getopt -import string import sys cmd_opts, args = getopt.getopt(sys.argv[1:], 'chlmo:x', []) for opt, arg in cmd_opts: if opt == '-o': output = open(arg, 'wb') -output.write(string.join(sys.argv) + "\\n") +output.write(" ".join(sys.argv) + "\\n") for a in args: contents = open(a, 'rb').read() - output.write(string.replace(contents, 'RPCGEN', 'myrpcgen.py')) + output.write(contents.replace('RPCGEN', 'myrpcgen.py')) output.close() sys.exit(0) """) |