[Python-checkins] r52884 - sandbox/trunk/2to3/fix_apply.py

guido.van.rossum python-checkins at python.org
Fri Dec 1 02:50:22 CET 2006


Author: guido.van.rossum
Date: Fri Dec  1 02:50:22 2006
New Revision: 52884

Modified:
   sandbox/trunk/2to3/fix_apply.py
Log:
Delete a debug print.


Modified: sandbox/trunk/2to3/fix_apply.py
==============================================================================
--- sandbox/trunk/2to3/fix_apply.py	(original)
+++ sandbox/trunk/2to3/fix_apply.py	Fri Dec  1 02:50:22 2006
@@ -85,7 +85,6 @@
         l_args.append(arg)
     if not 2 <= len(l_args) <= 3:
         return # too few or too many arguments to handle
-    print "Bingo! >>>%s<<<" % node
     prefix = node.get_prefix()
     l_args[0].replace(None)
     node.children[0].replace(l_args[0])


More information about the Python-checkins mailing list