[Python-checkins] r74415 - python/branches/tk_and_idle_maintenance/Lib/idlelib/PyShell.py
guilherme.polo
python-checkins at python.org
Thu Aug 13 16:48:56 CEST 2009
Author: guilherme.polo
Date: Thu Aug 13 16:48:55 2009
New Revision: 74415
Log:
Removing extra print :)
Modified:
python/branches/tk_and_idle_maintenance/Lib/idlelib/PyShell.py
Modified: python/branches/tk_and_idle_maintenance/Lib/idlelib/PyShell.py
==============================================================================
--- python/branches/tk_and_idle_maintenance/Lib/idlelib/PyShell.py (original)
+++ python/branches/tk_and_idle_maintenance/Lib/idlelib/PyShell.py Thu Aug 13 16:48:55 2009
@@ -955,7 +955,6 @@
self.showprompt()
for func, args, kwargs in self._cleanup_funcs:
- print func, args, kwargs
func(*args, **kwargs)
self._cleanup_funcs = []
More information about the Python-checkins
mailing list