Remove debugging prints.

This commit is contained in:
Michael W. Hudson 2003-01-03 10:25:20 +00:00
parent 36cd2bf459
commit 8d0ffe0126
1 changed files with 0 additions and 2 deletions

View File

@ -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: