summaryrefslogtreecommitdiff
path: root/Lib/lib2to3
diff options
context:
space:
mode:
authorGregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) <greg@krypto.org>2016-09-10 20:39:36 -0700
committerGregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) <greg@krypto.org>2016-09-10 20:39:36 -0700
commit3a95f45a38dad10fd69b3bd48c8754da431d0ef1 (patch)
treefa8de0a2beba8757150d75828a9230ad052fb9ea /Lib/lib2to3
parent56ff5f7298eb0845af096923d6452538c8357274 (diff)
downloadcpython-git-3a95f45a38dad10fd69b3bd48c8754da431d0ef1.tar.gz
Remove the debug print that i accidentally left in.
Diffstat (limited to 'Lib/lib2to3')
-rw-r--r--Lib/lib2to3/fixes/fix_reload.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/lib2to3/fixes/fix_reload.py b/Lib/lib2to3/fixes/fix_reload.py
index b71727377b..5bec7d5363 100644
--- a/Lib/lib2to3/fixes/fix_reload.py
+++ b/Lib/lib2to3/fixes/fix_reload.py
@@ -26,7 +26,6 @@ class FixReload(fixer_base.BaseFix):
# 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.