mirror of
https://github.com/python/cpython.git
synced 2025-09-18 22:50:26 +00:00
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
This commit is contained in:
parent
97ff04789d
commit
312e5afb51
3 changed files with 13 additions and 4 deletions
|
@ -19,9 +19,9 @@ the integration of the RPC and remote debugger, implemented the threaded
|
||||||
subprocess, and made a number of usability enhancements.
|
subprocess, and made a number of usability enhancements.
|
||||||
|
|
||||||
Other contributors include Raymond Hettinger, Tony Lownds (Mac integration),
|
Other contributors include Raymond Hettinger, Tony Lownds (Mac integration),
|
||||||
Neal Norwitz (code check and clean-up), Noam Raphael (Code Context, Call Tips,
|
Neal Norwitz (code check and clean-up), Ronald Oussoren (Mac integration),
|
||||||
many other patches), and Chui Tey (RPC integration, debugger integration and
|
Noam Raphael (Code Context, Call Tips, many other patches), and Chui Tey (RPC
|
||||||
persistent breakpoints).
|
integration, debugger integration and persistent breakpoints).
|
||||||
|
|
||||||
Scott David Daniels, Tal Einat, Hernan Foffani, Christos Georgiou,
|
Scott David Daniels, Tal Einat, Hernan Foffani, Christos Georgiou,
|
||||||
Martin v. Löwis, Jason Orendorff, Josh Robb, Nigel Rowe, Bruce Sherwood,
|
Martin v. Löwis, Jason Orendorff, Josh Robb, Nigel Rowe, Bruce Sherwood,
|
||||||
|
|
|
@ -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?
|
What's New in IDLE 1.2b3?
|
||||||
=========================
|
=========================
|
||||||
|
|
||||||
|
|
|
@ -722,6 +722,7 @@ class ModifiedInterpreter(InteractiveInterpreter):
|
||||||
else:
|
else:
|
||||||
self.showtraceback()
|
self.showtraceback()
|
||||||
except:
|
except:
|
||||||
|
if self.rpcclt:
|
||||||
print>>sys.stderr, "IDLE internal error in runcode()"
|
print>>sys.stderr, "IDLE internal error in runcode()"
|
||||||
self.showtraceback()
|
self.showtraceback()
|
||||||
finally:
|
finally:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue