summaryrefslogtreecommitdiffstats
path: root/test/LEX/LEXCOMSTR.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/LEX/LEXCOMSTR.py')
-rw-r--r--test/LEX/LEXCOMSTR.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/LEX/LEXCOMSTR.py b/test/LEX/LEXCOMSTR.py
index 5b01df7..a06c20c 100644
--- a/test/LEX/LEXCOMSTR.py
+++ b/test/LEX/LEXCOMSTR.py
@@ -31,7 +31,7 @@ the displayed string when lex 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', 'lex'],
- LEXCOM = r'%s mylex.py $TARGET $SOURCES',
+ LEXCOM = r'%(_python_)s mylex.py $TARGET $SOURCES',
LEXCOMSTR = 'Lexing $TARGET from $SOURCE')
env.CFile(target = 'aaa', source = 'aaa.l')
env.CFile(target = 'bbb', source = 'bbb.lex')
-""" % python)
+""" % locals())
test.write('aaa.l', "aaa.l\n/*lex*/\n")
test.write('bbb.lex', "bbb.lex\n/*lex*/\n")