summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2008-08-04 03:23:25 (GMT)
committerGregory P. Smith <greg@mad-scientist.com>2008-08-04 03:23:25 (GMT)
commit7641b1c94352b69318c301ab55fa408207092289 (patch)
tree055c51b469f38e79d7884a49f199d14469ec26b2 /Misc
parent03e5182dca2ec575c6c500b446f52a1f8c2a50a0 (diff)
downloadcpython-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/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 603e847..47cb3ef 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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
-----------------