summaryrefslogtreecommitdiffstats
path: root/test/SWIG/SWIGCOM.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/SWIG/SWIGCOM.py')
-rw-r--r--test/SWIG/SWIGCOM.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/SWIG/SWIGCOM.py b/test/SWIG/SWIGCOM.py
index 22e217a..20d2d5d 100644
--- a/test/SWIG/SWIGCOM.py
+++ b/test/SWIG/SWIGCOM.py
@@ -30,7 +30,7 @@ Test the ability to configure the $SWIGCOM construction variable.
import TestSCons
-python = TestSCons.python
+_python_ = TestSCons._python_
test = TestSCons.TestSCons()
@@ -48,10 +48,10 @@ 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')
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")