From 3a95f45a38dad10fd69b3bd48c8754da431d0ef1 Mon Sep 17 00:00:00 2001 From: "Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)" Date: Sat, 10 Sep 2016 20:39:36 -0700 Subject: [PATCH] Remove the debug print that i accidentally left in. --- Lib/lib2to3/fixes/fix_reload.py | 1 - 1 file changed, 1 deletion(-) diff --git a/Lib/lib2to3/fixes/fix_reload.py b/Lib/lib2to3/fixes/fix_reload.py index b71727377b0..5bec7d53638 100644 --- a/Lib/lib2to3/fixes/fix_reload.py +++ b/Lib/lib2to3/fixes/fix_reload.py @@ -26,7 +26,6 @@ def transform(self, node, results): # 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.