]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
On Windows the subprocess was not exiting during a restart.
authorKurt B. Kaiser <kbk@shore.net>
Wed, 14 May 2003 18:15:40 +0000 (18:15 +0000)
committerKurt B. Kaiser <kbk@shore.net>
Wed, 14 May 2003 18:15:40 +0000 (18:15 +0000)
commitaa6b856a427e7ce581a42e15aed9b3775c907c1a
tree30e96aa0d068f3c879e36f0b3f7bbdef2b396468
parentd8f21203b0ae9b69e84520d7fabe22ccfc9b4188
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
Lib/idlelib/run.py