summaryrefslogtreecommitdiffstats
path: root/test/SWIG/SWIGCOMSTR.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/SWIG/SWIGCOMSTR.py')
-rw-r--r--test/SWIG/SWIGCOMSTR.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/SWIG/SWIGCOMSTR.py b/test/SWIG/SWIGCOMSTR.py
index 3ffcdbf..b991d77 100644
--- a/test/SWIG/SWIGCOMSTR.py
+++ b/test/SWIG/SWIGCOMSTR.py
@@ -31,7 +31,7 @@ the displayed string when swig is called.
import TestSCons
-python = TestSCons.python
+_python_ = TestSCons._python_
test = TestSCons.TestSCons()
@@ -49,11 +49,11 @@ sys.exit(0)
test.write('SConstruct', """
env = Environment(tools=['default', 'swig'],
- SWIGCOM = r'%s myswig.py $TARGET $SOURCES',
+ SWIGCOM = r'%(_python_)s myswig.py $TARGET $SOURCES',
SWIGCOMSTR = 'Swigging $TARGET from $SOURCE')
env.CFile(target = 'aaa', source = 'aaa.i')
env.CXXFile(target = 'bbb', source = 'bbb.i', SWIGFLAGS='-c++')
-""" % python)
+""" % locals())
test.write('aaa.i', "aaa.i\n/*swig*/\n")
test.write('bbb.i', "bbb.i\n/*swig*/\n")