M run.py
1. Clarify that rpc.SocketIO._getresponse() currently blocks on socket.
2. Improve exception handling in subprocess when GUI terminates abruptly.
This commit is contained in:
Kurt B. Kaiser 2003-03-11 22:55:56 +00:00
parent 2b477565ad
commit 7c22132069
2 changed files with 4 additions and 4 deletions

View file

@ -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):