diff options
author | Greg Noel <GregNoel@tigris.org> | 2009-03-08 00:51:26 (GMT) |
---|---|---|
committer | Greg Noel <GregNoel@tigris.org> | 2009-03-08 00:51:26 (GMT) |
commit | 7f380de2d31a8ca288bd8a44a51de8f2867830be (patch) | |
tree | beffc7420a3c8681158aeefa6b82628fa7121aca /test/SConscript | |
parent | 4993b28ca2ef767ede531e21450f390683da6b66 (diff) | |
download | SCons-7f380de2d31a8ca288bd8a44a51de8f2867830be.zip SCons-7f380de2d31a8ca288bd8a44a51de8f2867830be.tar.gz SCons-7f380de2d31a8ca288bd8a44a51de8f2867830be.tar.bz2 |
Issue 2326, change execfile() to exec ... (FIXED)
Diffstat (limited to 'test/SConscript')
-rw-r--r-- | test/SConscript/SConscriptChdir.py | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/test/SConscript/SConscriptChdir.py b/test/SConscript/SConscriptChdir.py index 8169f08..4c55844 100644 --- a/test/SConscript/SConscriptChdir.py +++ b/test/SConscript/SConscriptChdir.py @@ -44,32 +44,27 @@ SConscript('dir5/SConscript') """) test.write(['dir1', 'SConscript'], """ -import string -exec(string.replace(open("create_test.py").read(), '\\r', '\\n')) +exec(open("create_test.py", 'rU').read()) """) test.write(['dir2', 'SConscript'], """ -import string -exec(string.replace(open("create_test.py").read(), '\\r', '\\n')) +exec(open("create_test.py", 'rU').read()) """) test.write(['dir3', 'SConscript'], """ import os.path name = os.path.join('dir3', 'create_test.py') -import string -exec(string.replace(open(name).read(), '\\r', '\\n')) +exec(open(name, 'rU').read()) """) test.write(['dir4', 'SConscript'], """ -import string -exec(string.replace(open("create_test.py").read(), '\\r', '\\n')) +exec(open("create_test.py", 'rU').read()) """) test.write(['dir5', 'SConscript'], """ import os.path name = os.path.join('dir5', 'create_test.py') -import string -exec(string.replace(open(name).read(), '\\r', '\\n')) +exec(open(name, 'rU').read()) """) for dir in ['dir1', 'dir2', 'dir3','dir4', 'dir5']: |