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

This commit is contained in:
Roger Serwy 2013-03-31 00:57:16 -05:00
parent d676a3a221
commit 6e4e4abf16
2 changed files with 3 additions and 1 deletions

View File

@ -144,7 +144,7 @@ def close(self):
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:

View File

@ -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.