diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-07-05 12:04:39 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-07-05 12:04:39 (GMT) |
commit | 5b1261d750793539cf4508a1e76c2f6d20900ac7 (patch) | |
tree | 572bba5ca861d7a3fac3d0ad25570c96aa4f764d /Misc/NEWS | |
parent | d9fc85db7f644c36d8709af49c97bed62451e59a (diff) | |
parent | 2cfb6f3aa086b1f500516372f7179f10c123a777 (diff) | |
download | cpython-5b1261d750793539cf4508a1e76c2f6d20900ac7.zip cpython-5b1261d750793539cf4508a1e76c2f6d20900ac7.tar.gz cpython-5b1261d750793539cf4508a1e76c2f6d20900ac7.tar.bz2 |
(merge 3.2) Issue #12493: subprocess: communicate() handles EINTR
subprocess.Popen.communicate() now also handles EINTR errors if the process has
only one pipe.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -219,6 +219,9 @@ Core and Builtins Library ------- +- Issue #12493: subprocess: Popen.communicate() now also handles EINTR errors + if the process has only one pipe. + - Issue #12467: warnings: fix a race condition if a warning is emitted at shutdown, if globals()['__file__'] is None. |