]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
1. When used w/o subprocess, all exceptions were preceeded by an error
authorKurt B. Kaiser <kbk@shore.net>
Wed, 9 Aug 2006 16:46:15 +0000 (16:46 +0000)
committerKurt B. Kaiser <kbk@shore.net>
Wed, 9 Aug 2006 16:46:15 +0000 (16:46 +0000)
    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

Lib/idlelib/CREDITS.txt
Lib/idlelib/NEWS.txt
Lib/idlelib/PyShell.py

index d5244052f5e53c5774d6d9d60f82eca9541c4e8b..e838c03987c14b4fc51303e4df510cf6f074c89f 100644 (file)
@@ -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,
index a454ea58c3a2ea50122ed3bbca3be6229d1b8be9..412c7a17e6d8c6ffb1886c8861a4cf5320cb2204 100644 (file)
@@ -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?
 =========================
 
index 227372ef2a7c7d9837f9483e3eac94ec8a34ea44..f0d79263a82bc0cadacaacd680c93e68bd81376d 100644 (file)
@@ -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: