diff options
author | Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) <greg@krypto.org> | 2016-09-11 03:39:36 (GMT) |
---|---|---|
committer | Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) <greg@krypto.org> | 2016-09-11 03:39:36 (GMT) |
commit | 3a95f45a38dad10fd69b3bd48c8754da431d0ef1 (patch) | |
tree | fa8de0a2beba8757150d75828a9230ad052fb9ea /Lib | |
parent | 56ff5f7298eb0845af096923d6452538c8357274 (diff) | |
download | cpython-3a95f45a38dad10fd69b3bd48c8754da431d0ef1.zip cpython-3a95f45a38dad10fd69b3bd48c8754da431d0ef1.tar.gz cpython-3a95f45a38dad10fd69b3bd48c8754da431d0ef1.tar.bz2 |
Remove the debug print that i accidentally left in.
Diffstat (limited to 'Lib')
-rw-r--r-- | 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 index b717273..5bec7d5 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. |