mirror of https://github.com/python/cpython.git
#6649: Fixed missing exit status in IDLE. Patch by Guilherme Polo.
This commit is contained in:
parent
d676a3a221
commit
6e4e4abf16
|
@ -144,7 +144,7 @@ def close(self):
|
|||
|
||||
def exithook(self):
|
||||
"override for specific exit action"
|
||||
os._exit()
|
||||
os._exit(0)
|
||||
|
||||
def debug(self, *args):
|
||||
if not self.debugging:
|
||||
|
|
Loading…
Reference in New Issue