Skip to content

Commit 78e09cb

Browse files
author
kurt.kaiser
committed
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 git-svn-id: http://svn.python.org/projects/python/trunk@51180 6015fed2-1504-0410-9fe1-9d1591cc4771
1 parent d12b13d commit 78e09cb

3 files changed

Lines changed: 13 additions & 4 deletions

File tree

Lib/idlelib/CREDITS.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ the integration of the RPC and remote debugger, implemented the threaded
1919
subprocess, and made a number of usability enhancements.
2020

2121
Other contributors include Raymond Hettinger, Tony Lownds (Mac integration),
22-
Neal Norwitz (code check and clean-up), Noam Raphael (Code Context, Call Tips,
23-
many other patches), and Chui Tey (RPC integration, debugger integration and
24-
persistent breakpoints).
22+
Neal Norwitz (code check and clean-up), Ronald Oussoren (Mac integration),
23+
Noam Raphael (Code Context, Call Tips, many other patches), and Chui Tey (RPC
24+
integration, debugger integration and persistent breakpoints).
2525

2626
Scott David Daniels, Tal Einat, Hernan Foffani, Christos Georgiou,
2727
Martin v. L�wis, Jason Orendorff, Josh Robb, Nigel Rowe, Bruce Sherwood,

Lib/idlelib/NEWS.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
What's New in IDLE 1.2c1?
2+
=========================
3+
4+
*Release date: XX-AUG-2006*
5+
6+
- When used w/o subprocess, all exceptions were preceeded by an error
7+
message claiming they were IDLE internal errors (since 1.2a1).
8+
19
What's New in IDLE 1.2b3?
210
=========================
311

Lib/idlelib/PyShell.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -722,7 +722,8 @@ def runcode(self, code):
722722
else:
723723
self.showtraceback()
724724
except:
725-
print>>sys.stderr, "IDLE internal error in runcode()"
725+
if self.rpcclt:
726+
print>>sys.stderr, "IDLE internal error in runcode()"
726727
self.showtraceback()
727728
finally:
728729
if not use_subprocess:

0 commit comments

Comments
 (0)