[Python-checkins] r74319 - python/branches/tk_and_idle_maintenance/Lib/idlelib/rpc.py

guilherme.polo python-checkins at python.org
Wed Aug 5 18:25:23 CEST 2009


Author: guilherme.polo
Date: Wed Aug  5 18:25:23 2009
New Revision: 74319

Log:
Added missing exit status.

Modified:
   python/branches/tk_and_idle_maintenance/Lib/idlelib/rpc.py

Modified: python/branches/tk_and_idle_maintenance/Lib/idlelib/rpc.py
==============================================================================
--- python/branches/tk_and_idle_maintenance/Lib/idlelib/rpc.py	(original)
+++ python/branches/tk_and_idle_maintenance/Lib/idlelib/rpc.py	Wed Aug  5 18:25:23 2009
@@ -144,7 +144,7 @@
 
     def exithook(self):
         "override for specific exit action"
-        os._exit()
+        os._exit(0)
 
     def debug(self, *args):
         if not self.debugging:


More information about the Python-checkins mailing list