summaryrefslogtreecommitdiffstats
path: root/Lib/compiler
diff options
context:
space:
mode:
authorMichael W. Hudson <mwh@python.net>2003-01-03 10:25:20 (GMT)
committerMichael W. Hudson <mwh@python.net>2003-01-03 10:25:20 (GMT)
commit8d0ffe0126f301338625fe7402d3c4c4b617a449 (patch)
treeb8eecdd354f3542444a080c19ed120e5af2cbeef /Lib/compiler
parent36cd2bf4596fdffee0392335aca8bd221d46584a (diff)
downloadcpython-8d0ffe0126f301338625fe7402d3c4c4b617a449.zip
cpython-8d0ffe0126f301338625fe7402d3c4c4b617a449.tar.gz
cpython-8d0ffe0126f301338625fe7402d3c4c4b617a449.tar.bz2
Remove debugging prints.
Diffstat (limited to 'Lib/compiler')
-rw-r--r--Lib/compiler/transformer.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/compiler/transformer.py b/Lib/compiler/transformer.py
index d1001bd..337ef43 100644
--- a/Lib/compiler/transformer.py
+++ b/Lib/compiler/transformer.py
@@ -650,14 +650,12 @@ class Transformer:
def factor(self, nodelist):
elt = nodelist[0]
t = elt[0]
- print "source", nodelist[-1]
node = self.com_node(nodelist[-1])
# need to handle (unary op)constant here...
if t == token.PLUS:
node = UnaryAdd(node)
node.lineno = elt[2]
elif t == token.MINUS:
- print node
node = UnarySub(node)
node.lineno = elt[2]
elif t == token.TILDE: