[Python-checkins] python/dist/src/Lib/compiler transformer.py,1.35,1.36

mwh@users.sourceforge.net mwh@users.sourceforge.net
Fri, 03 Jan 2003 02:25:24 -0800


Update of /cvsroot/python/python/dist/src/Lib/compiler
In directory sc8-pr-cvs1:/tmp/cvs-serv29464

Modified Files:
	transformer.py 
Log Message:
Remove debugging prints.


Index: transformer.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/compiler/transformer.py,v
retrieving revision 1.35
retrieving revision 1.36
diff -C2 -d -r1.35 -r1.36
*** transformer.py	31 Dec 2002 18:17:42 -0000	1.35
--- transformer.py	3 Jan 2003 10:25:20 -0000	1.36
***************
*** 651,655 ****
          elt = nodelist[0]
          t = elt[0]
-         print "source", nodelist[-1]
          node = self.com_node(nodelist[-1])
          # need to handle (unary op)constant here...
--- 651,654 ----
***************
*** 658,662 ****
              node.lineno = elt[2]
          elif t == token.MINUS:
-             print node
              node = UnarySub(node)
              node.lineno = elt[2]
--- 657,660 ----