]> granicus.if.org Git - python/commitdiff
Remove debugging prints.
authorMichael W. Hudson <mwh@python.net>
Fri, 3 Jan 2003 10:25:20 +0000 (10:25 +0000)
committerMichael W. Hudson <mwh@python.net>
Fri, 3 Jan 2003 10:25:20 +0000 (10:25 +0000)
Lib/compiler/transformer.py

index d1001bdc3761dd3f5715f6385077dfba8a214ecd..337ef438b469c121fc77ec55bf1896c1fa38e7e7 100644 (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: