[Python-checkins] r51180 - python/trunk/Lib/idlelib/CREDITS.txt python/trunk/Lib/idlelib/NEWS.txt python/trunk/Lib/idlelib/PyShell.py
kurt.kaiser
python-checkins at python.org
Wed Aug 9 18:46:16 CEST 2006
Author: kurt.kaiser
Date: Wed Aug 9 18:46:15 2006
New Revision: 51180
Modified:
python/trunk/Lib/idlelib/CREDITS.txt
python/trunk/Lib/idlelib/NEWS.txt
python/trunk/Lib/idlelib/PyShell.py
Log:
1. When used w/o subprocess, all exceptions were preceeded by an error
message claiming they were IDLE internal errors (since 1.2a1).
2. Add Ronald Oussoren to CREDITS
M NEWS.txt
M PyShell.py
M CREDITS.txt
Modified: python/trunk/Lib/idlelib/CREDITS.txt
==============================================================================
--- python/trunk/Lib/idlelib/CREDITS.txt (original)
+++ python/trunk/Lib/idlelib/CREDITS.txt Wed Aug 9 18:46:15 2006
@@ -19,9 +19,9 @@
subprocess, and made a number of usability enhancements.
Other contributors include Raymond Hettinger, Tony Lownds (Mac integration),
-Neal Norwitz (code check and clean-up), Noam Raphael (Code Context, Call Tips,
-many other patches), and Chui Tey (RPC integration, debugger integration and
-persistent breakpoints).
+Neal Norwitz (code check and clean-up), Ronald Oussoren (Mac integration),
+Noam Raphael (Code Context, Call Tips, many other patches), and Chui Tey (RPC
+integration, debugger integration and persistent breakpoints).
Scott David Daniels, Tal Einat, Hernan Foffani, Christos Georgiou,
Martin v. Löwis, Jason Orendorff, Josh Robb, Nigel Rowe, Bruce Sherwood,
Modified: python/trunk/Lib/idlelib/NEWS.txt
==============================================================================
--- python/trunk/Lib/idlelib/NEWS.txt (original)
+++ python/trunk/Lib/idlelib/NEWS.txt Wed Aug 9 18:46:15 2006
@@ -1,3 +1,11 @@
+What's New in IDLE 1.2c1?
+=========================
+
+*Release date: XX-AUG-2006*
+
+- When used w/o subprocess, all exceptions were preceeded by an error
+ message claiming they were IDLE internal errors (since 1.2a1).
+
What's New in IDLE 1.2b3?
=========================
Modified: python/trunk/Lib/idlelib/PyShell.py
==============================================================================
--- python/trunk/Lib/idlelib/PyShell.py (original)
+++ python/trunk/Lib/idlelib/PyShell.py Wed Aug 9 18:46:15 2006
@@ -722,7 +722,8 @@
else:
self.showtraceback()
except:
- print>>sys.stderr, "IDLE internal error in runcode()"
+ if self.rpcclt:
+ print>>sys.stderr, "IDLE internal error in runcode()"
self.showtraceback()
finally:
if not use_subprocess:
More information about the Python-checkins
mailing list