diff options
author | Roger Serwy <roger.serwy@gmail.com> | 2013-03-31 06:00:15 (GMT) |
---|---|---|
committer | Roger Serwy <roger.serwy@gmail.com> | 2013-03-31 06:00:15 (GMT) |
commit | 71c9e1a5c36cfc53ff760e6c3b4d957424d73d72 (patch) | |
tree | c6381ee68628c116659af81c20073dabf86f00b5 | |
parent | 32622236d5b45fedcefa50c11afeaa5d99ff8cdc (diff) | |
download | cpython-71c9e1a5c36cfc53ff760e6c3b4d957424d73d72.zip cpython-71c9e1a5c36cfc53ff760e6c3b4d957424d73d72.tar.gz cpython-71c9e1a5c36cfc53ff760e6c3b4d957424d73d72.tar.bz2 |
#6649: Fixed missing exit status in IDLE. Patch by Guilherme Polo.
-rw-r--r-- | Lib/idlelib/rpc.py | 2 | ||||
-rw-r--r-- | Misc/NEWS | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/Lib/idlelib/rpc.py b/Lib/idlelib/rpc.py index a0eb1b3..6093ce2 100644 --- a/Lib/idlelib/rpc.py +++ b/Lib/idlelib/rpc.py @@ -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: @@ -15,6 +15,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. |