Skip to content

Commit 3aaf5da

Browse files
committed
#6649: merge with 3.3.
2 parents 42a8320 + 71c9e1a commit 3aaf5da

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Lib/idlelib/rpc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ def close(self):
145145

146146
def exithook(self):
147147
"override for specific exit action"
148-
os._exit()
148+
os._exit(0)
149149

150150
def debug(self, *args):
151151
if not self.debugging:

Misc/NEWS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -297,6 +297,8 @@ Core and Builtins
297297
Library
298298
-------
299299

300+
- Issue #6649: Fixed missing exit status in IDLE. Patch by Guilherme Polo.
301+
300302
- Issue #17435: threading.Timer's __init__ method no longer uses mutable
301303
default values for the args and kwargs parameters.
302304

0 commit comments

Comments
 (0)