[Python-checkins] cpython (merge 3.3 -> default): #6649: merge with 3.3.

roger.serwy python-checkins at python.org
Sun Mar 31 08:18:33 CEST 2013


http://hg.python.org/cpython/rev/abbbe1f90635
changeset:   83036:abbbe1f90635
parent:      83032:e0f66c924544
parent:      83035:cd2c613527ed
user:        Roger Serwy <roger.serwy at gmail.com>
date:        Sun Mar 31 01:11:26 2013 -0500
summary:
  #6649: merge with 3.3.

files:
  Lib/idlelib/rpc.py |  2 +-
  Misc/NEWS          |  2 ++
  2 files changed, 3 insertions(+), 1 deletions(-)


diff --git a/Lib/idlelib/rpc.py b/Lib/idlelib/rpc.py
--- a/Lib/idlelib/rpc.py
+++ b/Lib/idlelib/rpc.py
@@ -145,7 +145,7 @@
 
     def exithook(self):
         "override for specific exit action"
-        os._exit()
+        os._exit(0)
 
     def debug(self, *args):
         if not self.debugging:
diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -297,6 +297,8 @@
 Library
 -------
 
+- Issue #6649: Fixed missing exit status in IDLE. Patch by Guilherme Polo.
+
 - Issue #17435: threading.Timer's __init__ method no longer uses mutable
   default values for the args and kwargs parameters.
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list