On Windows the subprocess was not exiting during a restart.
This bug, henceforth designated Freddy, was due to the mistaken elimination of the KeyboardInterrupt exception at the previous revision. PyShell's unix_terminate hammer was masking the problem on Linux. On W2K the subprocess MainThread was trying to print the exception after the SockThread had ceased to service the socket. The subprocess would then detach and spin when the GUI created the new subprocess. Modified Files: run.py
This commit is contained in:
parent
d8f21203b0
commit
aa6b856a42
|
@ -62,6 +62,8 @@ def main():
|
|||
method, args, kwargs = request
|
||||
ret = method(*args, **kwargs)
|
||||
rpc.response_queue.put((seq, ret))
|
||||
except KeyboardInterrupt:
|
||||
continue
|
||||
except:
|
||||
print_exception()
|
||||
rpc.response_queue.put((seq, None))
|
||||
|
|
Loading…
Reference in New Issue