summaryrefslogtreecommitdiffstats
path: root/test/MinGW
diff options
context:
space:
mode:
Diffstat (limited to 'test/MinGW')
-rw-r--r--test/MinGW/RCCOM.py4
-rw-r--r--test/MinGW/RCCOMSTR.py4
2 files changed, 4 insertions, 4 deletions
diff --git a/test/MinGW/RCCOM.py b/test/MinGW/RCCOM.py
index 4ddcd91..2db0563 100644
--- a/test/MinGW/RCCOM.py
+++ b/test/MinGW/RCCOM.py
@@ -31,7 +31,7 @@ when using MinGW.
import TestSCons
-python = TestSCons.python
+_python_ = TestSCons._python_
test = TestSCons.TestSCons()
@@ -49,7 +49,7 @@ sys.exit(0)
test.write('SConstruct', """
env = Environment(tools=['default', 'mingw'],
- RCCOM = r'%(python)s myrc.py $TARGET $SOURCES')
+ RCCOM = r'%(_python_)s myrc.py $TARGET $SOURCES')
env.RES(target = 'aaa', source = 'aaa.rc')
""" % locals())
diff --git a/test/MinGW/RCCOMSTR.py b/test/MinGW/RCCOMSTR.py
index e095847..96565f1 100644
--- a/test/MinGW/RCCOMSTR.py
+++ b/test/MinGW/RCCOMSTR.py
@@ -31,7 +31,7 @@ the displayed string when rc is called.
import TestSCons
-python = TestSCons.python
+_python_ = TestSCons._python_
test = TestSCons.TestSCons()
@@ -49,7 +49,7 @@ sys.exit(0)
test.write('SConstruct', """
env = Environment(tools=['default', 'mingw'],
- RCCOM = r'%(python)s myrc.py $TARGET $SOURCES',
+ RCCOM = r'%(_python_)s myrc.py $TARGET $SOURCES',
RCCOMSTR = 'RCing $TARGET from $SOURCE')
env.RES(target = 'aaa', source = 'aaa.rc')
""" % locals())