projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
36cd2bf
)
Remove debugging prints.
author
Michael W. Hudson
<mwh@python.net>
Fri, 3 Jan 2003 10:25:20 +0000
(10:25 +0000)
committer
Michael W. Hudson
<mwh@python.net>
Fri, 3 Jan 2003 10:25:20 +0000
(10:25 +0000)
Lib/compiler/transformer.py
patch
|
blob
|
history
diff --git
a/Lib/compiler/transformer.py
b/Lib/compiler/transformer.py
index d1001bdc3761dd3f5715f6385077dfba8a214ecd..337ef438b469c121fc77ec55bf1896c1fa38e7e7 100644
(file)
--- 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: