diff options
author | Russel Winder <russel@winder.org.uk> | 2016-01-01 15:59:23 (GMT) |
---|---|---|
committer | Russel Winder <russel@winder.org.uk> | 2016-01-01 15:59:23 (GMT) |
commit | 3f637329635c089bdca30bb4b0e23334d12866b3 (patch) | |
tree | 4b30c7fe89b85380b9c825c906e2745c4d7c96d1 /test/File.py | |
parent | 7b68ccb54e7b4d2200f8ac813eb6f8b2ae3654eb (diff) | |
download | SCons-3f637329635c089bdca30bb4b0e23334d12866b3.zip SCons-3f637329635c089bdca30bb4b0e23334d12866b3.tar.gz SCons-3f637329635c089bdca30bb4b0e23334d12866b3.tar.bz2 |
Some more statement to function transforms.
Diffstat (limited to 'test/File.py')
-rw-r--r-- | test/File.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/test/File.py b/test/File.py index d919884..ec148b2 100644 --- a/test/File.py +++ b/test/File.py @@ -38,16 +38,16 @@ test = TestSCons.TestSCons() test.write('SConstruct', """ env = Environment(FOO = 'fff', BAR = 'bbb') -print File('ddd') -print File('$FOO') -print File('${BAR}_$BAR') -print env.File('eee') -print env.File('$FOO') -print env.File('${BAR}_$BAR') +print(File('ddd')) +print(File('$FOO')) +print(File('${BAR}_$BAR')) +print(env.File('eee')) +print(env.File('$FOO')) +print(env.File('${BAR}_$BAR')) f1 = env.File('f1') -print f1 +print(f1) f2 = f1.File('f2') -print f2 +print(f2) """) expect = test.wrap_stdout(read_str = """\ |