diff options
author | Roger Serwy <roger.serwy@gmail.com> | 2013-03-31 01:11:26 -0500 |
---|---|---|
committer | Roger Serwy <roger.serwy@gmail.com> | 2013-03-31 01:11:26 -0500 |
commit | 3aaf5dab8a6be48adb69290385017777b7177adf (patch) | |
tree | 2b1106e2777bae1a9351e311106c30db39518b84 /Lib/idlelib/rpc.py | |
parent | 42a83201a0eb99abd780f676055788ab0d28df50 (diff) | |
parent | 71c9e1a5c36cfc53ff760e6c3b4d957424d73d72 (diff) | |
download | cpython-git-3aaf5dab8a6be48adb69290385017777b7177adf.tar.gz |
#6649: merge with 3.3.
Diffstat (limited to 'Lib/idlelib/rpc.py')
-rw-r--r-- | Lib/idlelib/rpc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/rpc.py b/Lib/idlelib/rpc.py index c86c97531e..9c51b8f6b5 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: |