diff options
author | Gregory P. Smith <greg@mad-scientist.com> | 2008-08-04 03:23:25 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@mad-scientist.com> | 2008-08-04 03:23:25 (GMT) |
commit | 7641b1c94352b69318c301ab55fa408207092289 (patch) | |
tree | 055c51b469f38e79d7884a49f199d14469ec26b2 /Misc | |
parent | 03e5182dca2ec575c6c500b446f52a1f8c2a50a0 (diff) | |
download | cpython-7641b1c94352b69318c301ab55fa408207092289.zip cpython-7641b1c94352b69318c301ab55fa408207092289.tar.gz cpython-7641b1c94352b69318c301ab55fa408207092289.tar.bz2 |
(backport from trunk r64756)
Issue #2113: Fix error in subprocess.Popen if the select system call is
interrupted by a signal.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -130,6 +130,10 @@ Library argument in python 2.5, this broke code that subclassed Popen to include its own poll method. Fixed my moving _deadstate to an _internal_poll method. +- Issue #2113: Fix error in subprocess.Popen if the select system call is + interrupted by a signal. + + Extension Modules ----------------- |