diff options
author | William Deegan <bill@baddogconsulting.com> | 2016-05-23 23:21:26 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2016-05-23 23:21:26 (GMT) |
commit | aa5a0468340338cc3423a06d6d55e1b52a713bc5 (patch) | |
tree | 71ff4e88b1e418ff32ba89ae0f4cf0b3f0d180a1 /test/SConscript/SConscript.py | |
parent | 15bd909b178ba5271125fca6846fa8c069be79f1 (diff) | |
parent | b387e34357c968d0855c525c7e838657a957ff01 (diff) | |
download | SCons-aa5a0468340338cc3423a06d6d55e1b52a713bc5.zip SCons-aa5a0468340338cc3423a06d6d55e1b52a713bc5.tar.gz SCons-aa5a0468340338cc3423a06d6d55e1b52a713bc5.tar.bz2 |
merge python3 branch to default
Diffstat (limited to 'test/SConscript/SConscript.py')
-rw-r--r-- | test/SConscript/SConscript.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/SConscript/SConscript.py b/test/SConscript/SConscript.py index c8453a7..d1e09ce 100644 --- a/test/SConscript/SConscript.py +++ b/test/SConscript/SConscript.py @@ -37,7 +37,7 @@ import foo assert foo.foo == 4 -print "SConstruct", os.getcwd() +print ("SConstruct", os.getcwd()) SConscript('SConscript') x1 = "SConstruct x1" @@ -85,11 +85,11 @@ SConscript('SConscript7') test.write('SConscript', """\ -# os should not be automajically imported: +# os should not be automatically imported: assert "os" not in globals() import os -print "SConscript " + os.getcwd() +print ("SConscript " + os.getcwd()) """) test.write('SConscript1', """ |