diff options
author | Kurt B. Kaiser <kbk@shore.net> | 2006-08-09 16:46:15 (GMT) |
---|---|---|
committer | Kurt B. Kaiser <kbk@shore.net> | 2006-08-09 16:46:15 (GMT) |
commit | 312e5afb5121ac9863bda7e348e5c4f1d75c5dd6 (patch) | |
tree | b586d83218edb05ec670d5121fa1932d34f4b4e2 /Lib/idlelib | |
parent | 97ff04789de3e37af585648de70260a54a29bd47 (diff) | |
download | cpython-312e5afb5121ac9863bda7e348e5c4f1d75c5dd6.zip cpython-312e5afb5121ac9863bda7e348e5c4f1d75c5dd6.tar.gz cpython-312e5afb5121ac9863bda7e348e5c4f1d75c5dd6.tar.bz2 |
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
Diffstat (limited to 'Lib/idlelib')
-rw-r--r-- | Lib/idlelib/CREDITS.txt | 6 | ||||
-rw-r--r-- | Lib/idlelib/NEWS.txt | 8 | ||||
-rw-r--r-- | Lib/idlelib/PyShell.py | 3 |
3 files changed, 13 insertions, 4 deletions
diff --git a/Lib/idlelib/CREDITS.txt b/Lib/idlelib/CREDITS.txt index d524405..e838c03 100644 --- a/Lib/idlelib/CREDITS.txt +++ b/Lib/idlelib/CREDITS.txt @@ -19,9 +19,9 @@ the integration of the RPC and remote debugger, implemented the threaded 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, diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt index a454ea5..412c7a1 100644 --- a/Lib/idlelib/NEWS.txt +++ b/Lib/idlelib/NEWS.txt @@ -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? ========================= diff --git a/Lib/idlelib/PyShell.py b/Lib/idlelib/PyShell.py index 227372e..f0d7926 100644 --- a/Lib/idlelib/PyShell.py +++ b/Lib/idlelib/PyShell.py @@ -722,7 +722,8 @@ class ModifiedInterpreter(InteractiveInterpreter): 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: |