mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
#6649: Fixed missing exit status in IDLE. Patch by Guilherme Polo.
This commit is contained in:
parent
32622236d5
commit
71c9e1a5c3
2 changed files with 3 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue