From 71c9e1a5c36cfc53ff760e6c3b4d957424d73d72 Mon Sep 17 00:00:00 2001 From: Roger Serwy Date: Sun, 31 Mar 2013 01:00:15 -0500 Subject: #6649: Fixed missing exit status in IDLE. Patch by Guilherme Polo. --- Lib/idlelib/rpc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/idlelib/rpc.py') diff --git a/Lib/idlelib/rpc.py b/Lib/idlelib/rpc.py index a0eb1b388e..6093ce216e 100644 --- a/Lib/idlelib/rpc.py +++ b/Lib/idlelib/rpc.py @@ -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: -- cgit v1.2.1