diff options
author | Kurt B. Kaiser <kbk@shore.net> | 2003-03-11 22:55:56 (GMT) |
---|---|---|
committer | Kurt B. Kaiser <kbk@shore.net> | 2003-03-11 22:55:56 (GMT) |
commit | 7c2213206924dabbc8a674ee74085a07f0fc6c51 (patch) | |
tree | eaae8f4a7d8266d8f788fa5c62392e9fc268cb84 /Lib/idlelib/run.py | |
parent | 2b477565adbe560b0edd8bebdad7792cfc400183 (diff) | |
download | cpython-7c2213206924dabbc8a674ee74085a07f0fc6c51.zip cpython-7c2213206924dabbc8a674ee74085a07f0fc6c51.tar.gz cpython-7c2213206924dabbc8a674ee74085a07f0fc6c51.tar.bz2 |
M rpc.py
M run.py
1. Clarify that rpc.SocketIO._getresponse() currently blocks on socket.
2. Improve exception handling in subprocess when GUI terminates abruptly.
Diffstat (limited to 'Lib/idlelib/run.py')
-rw-r--r-- | Lib/idlelib/run.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/run.py b/Lib/idlelib/run.py index 6ab8044..d79f3d7 100644 --- a/Lib/idlelib/run.py +++ b/Lib/idlelib/run.py @@ -92,7 +92,7 @@ class Executive: if sys.stdout.softspace: sys.stdout.softspace = 0 sys.stdout.write("\n") - except AttributeError: + except (AttributeError, EOFError): pass def cleanup_traceback(self, tb, exclude): |