[Python-checkins] cpython (3.5): Remove the debug print that i accidentally left in.

gregory.p.smith python-checkins at python.org
Sat Sep 10 23:40:53 EDT 2016


https://hg.python.org/cpython/rev/c6e45f1f76b5
changeset:   103606:c6e45f1f76b5
branch:      3.5
parent:      103604:1dc45beca118
user:        Gregory P. Smith <greg at krypto.org> [Google Inc.]
date:        Sat Sep 10 20:39:36 2016 -0700
summary:
  Remove the debug print that i accidentally left in.

files:
  Lib/lib2to3/fixes/fix_reload.py |  1 -
  1 files changed, 0 insertions(+), 1 deletions(-)


diff --git a/Lib/lib2to3/fixes/fix_reload.py b/Lib/lib2to3/fixes/fix_reload.py
--- a/Lib/lib2to3/fixes/fix_reload.py
+++ b/Lib/lib2to3/fixes/fix_reload.py
@@ -26,7 +26,6 @@
             # I feel like we should be able to express this logic in the
             # PATTERN above but I don't know how to do it so...
             obj = results['obj']
-            print('obj:', repr(obj))
             if obj:
                 if obj.type == self.syms.star_expr:
                     return  # Make no change.

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list