#6649: merge with 3.3.

This commit is contained in:
Roger Serwy 2013-03-31 01:11:26 -05:00
commit 3aaf5dab8a
2 changed files with 3 additions and 1 deletions

View File

@ -145,7 +145,7 @@ class SocketIO(object):
def exithook(self):
"override for specific exit action"
os._exit()
os._exit(0)
def debug(self, *args):
if not self.debugging:

View File

@ -297,6 +297,8 @@ Core and Builtins
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.