summaryrefslogtreecommitdiffstats
path: root/test/CC/CCCOM.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/CC/CCCOM.py')
-rw-r--r--test/CC/CCCOM.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CC/CCCOM.py b/test/CC/CCCOM.py
index 1be89a3..ca13ec8 100644
--- a/test/CC/CCCOM.py
+++ b/test/CC/CCCOM.py
@@ -33,7 +33,7 @@ import string
import sys
import TestSCons
-python = TestSCons.python
+_python_ = TestSCons._python_
_exe = TestSCons._exe
test = TestSCons.TestSCons()
@@ -55,7 +55,7 @@ else:
alt_c_suffix = '.c'
test.write('SConstruct', """
-env = Environment(CCCOM = r'%(python)s mycc.py $TARGET $SOURCE',
+env = Environment(CCCOM = r'%(_python_)s mycc.py $TARGET $SOURCE',
OBJSUFFIX='.obj')
env.Object(target = 'test1', source = 'test1.c')
env.Object(target = 'test2', source = 'test2%(alt_c_suffix)s')