diff options
author | Steven Knight <knight@baldmt.com> | 2004-04-28 11:57:44 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2004-04-28 11:57:44 (GMT) |
commit | 31e22cb37b82c626158506282733b8a646bd863e (patch) | |
tree | 30857787f3fc35878a7710242020daa735637168 /test/TargetSignatures.py | |
parent | 00403c6ffe98e56807ece34499265e3602bcc38a (diff) | |
download | SCons-31e22cb37b82c626158506282733b8a646bd863e.zip SCons-31e22cb37b82c626158506282733b8a646bd863e.tar.gz SCons-31e22cb37b82c626158506282733b8a646bd863e.tar.bz2 |
Test fixes for Python 2.3.3 on Win32. (Anthony Roach)
Diffstat (limited to 'test/TargetSignatures.py')
-rw-r--r-- | test/TargetSignatures.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/TargetSignatures.py b/test/TargetSignatures.py index 5060157..2ee016e 100644 --- a/test/TargetSignatures.py +++ b/test/TargetSignatures.py @@ -71,7 +71,7 @@ def copy1(env, source, target): open(str(target[0]), 'wb').write(open(str(source[0]), 'rb').read()) def copy2(env, source, target): - # added this line + x = 2 # added this line return copy1(env, source, target) env['BUILDERS']['Copy1'] = Builder(action=copy1) @@ -103,7 +103,7 @@ def copy1(env, source, target): open(str(target[0]), 'wb').write(open(str(source[0]), 'rb').read()) def copy2(env, source, target): - # added this line + x = 2 # added this line return copy1(env, source, target) env['BUILDERS']['Copy1'] = Builder(action=copy1) |