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