Commit 71c9e1a5 authored by Roger Serwy's avatar Roger Serwy

#6649: Fixed missing exit status in IDLE. Patch by Guilherme Polo.

parent 32622236
...@@ -145,7 +145,7 @@ class SocketIO(object): ...@@ -145,7 +145,7 @@ class SocketIO(object):
def exithook(self): def exithook(self):
"override for specific exit action" "override for specific exit action"
os._exit() os._exit(0)
def debug(self, *args): def debug(self, *args):
if not self.debugging: if not self.debugging:
......
...@@ -15,6 +15,8 @@ Core and Builtins ...@@ -15,6 +15,8 @@ Core and Builtins
Library Library
------- -------
- Issue #6649: Fixed missing exit status in IDLE. Patch by Guilherme Polo.
- Issue #17435: threading.Timer's __init__ method no longer uses mutable - Issue #17435: threading.Timer's __init__ method no longer uses mutable
default values for the args and kwargs parameters. default values for the args and kwargs parameters.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment