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

This commit is contained in:
Roger Serwy 2013-03-31 01:00:15 -05:00
parent 32622236d5
commit 71c9e1a5c3
2 changed files with 3 additions and 1 deletions

View file

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