From: Michael W. Hudson Date: Fri, 3 Jan 2003 10:25:20 +0000 (+0000) Subject: Remove debugging prints. X-Git-Tag: v2.3c1~2632 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8d0ffe0126f301338625fe7402d3c4c4b617a449;p=thirdparty%2FPython%2Fcpython.git Remove debugging prints. --- diff --git a/Lib/compiler/transformer.py b/Lib/compiler/transformer.py index d1001bdc3761..337ef438b469 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: