Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 42a8320 + 71c9e1a commit 3aaf5daCopy full SHA for 3aaf5da
2 files changed
Lib/idlelib/rpc.py
@@ -145,7 +145,7 @@ def close(self):
145
146
def exithook(self):
147
"override for specific exit action"
148
- os._exit()
+ os._exit(0)
149
150
def debug(self, *args):
151
if not self.debugging:
Misc/NEWS
@@ -297,6 +297,8 @@ Core and Builtins
297
Library
298
-------
299
300
+- Issue #6649: Fixed missing exit status in IDLE. Patch by Guilherme Polo.
301
+
302
- Issue #17435: threading.Timer's __init__ method no longer uses mutable
303
default values for the args and kwargs parameters.
304
0 commit comments