summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons/cpp.py
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2017-03-11 04:52:04 (GMT)
committerWilliam Deegan <bill@baddogconsulting.com>2017-03-11 04:52:04 (GMT)
commitbf3e197e213e45b5c5966b70f186f2fc6b0ecfa2 (patch)
tree555593fe3100995fddc9cd97820c168ec6a9b0dd /src/engine/SCons/cpp.py
parent01b45568cb32ef365d71d47ace917b201ca98c92 (diff)
parentdb4fc8015b8fbfc3e2423ff90007ffe77923b698 (diff)
downloadSCons-bf3e197e213e45b5c5966b70f186f2fc6b0ecfa2.zip
SCons-bf3e197e213e45b5c5966b70f186f2fc6b0ecfa2.tar.gz
SCons-bf3e197e213e45b5c5966b70f186f2fc6b0ecfa2.tar.bz2
update repo
Diffstat (limited to 'src/engine/SCons/cpp.py')
-rw-r--r--src/engine/SCons/cpp.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/engine/SCons/cpp.py b/src/engine/SCons/cpp.py
index 18f154a..8212cc1 100644
--- a/src/engine/SCons/cpp.py
+++ b/src/engine/SCons/cpp.py
@@ -312,7 +312,7 @@ class PreProcessor(object):
t = self.tuples.pop(0)
# Uncomment to see the list of tuples being processed (e.g.,
# to validate the CPP lines are being translated correctly).
- #print t
+ #print(t)
self.dispatch_table[t[0]](t)
return self.finalize_result(fname)
@@ -510,7 +510,7 @@ class PreProcessor(object):
t = self.resolve_include(t)
include_file = self.find_include_file(t)
if include_file:
- #print "include_file =", include_file
+ #print("include_file =", include_file)
self.result.append(include_file)
contents = self.read_file(include_file)
new_tuples = [('scons_current_file', include_file)] + \
@@ -547,7 +547,7 @@ class PreProcessor(object):
"""
s = t[1]
while not s[0] in '<"':
- #print "s =", s
+ #print("s =", s)
try:
s = self.cpp_namespace[s]
except KeyError: