Kaydet (Commit) 6e4e4abf authored tarafından Roger Serwy's avatar Roger Serwy

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

üst d676a3a2
...@@ -144,7 +144,7 @@ class SocketIO(object): ...@@ -144,7 +144,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:
......
...@@ -12,6 +12,8 @@ Core and Builtins ...@@ -12,6 +12,8 @@ Core and Builtins
Library Library
------- -------
- Issue #6649: Fixed missing exit status in IDLE. Patch by Guilherme Polo.
- Issue #17526: fix an IndexError raised while passing code without filename to - Issue #17526: fix an IndexError raised while passing code without filename to
inspect.findsource(). Initial patch by Tyler Doyle. inspect.findsource(). Initial patch by Tyler Doyle.
......
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