summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-07-05 12:08:01 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-07-05 12:08:01 (GMT)
commite790131dc6f2e4c125f29c882e64f3c88a4210d1 (patch)
tree7440e0e559e78000a3ce242aabaab4209ebd86be /Misc
parent4c41f84033ed257b3ef6586acd12ff87d00fa323 (diff)
downloadcpython-e790131dc6f2e4c125f29c882e64f3c88a4210d1.zip
cpython-e790131dc6f2e4c125f29c882e64f3c88a4210d1.tar.gz
cpython-e790131dc6f2e4c125f29c882e64f3c88a4210d1.tar.bz2
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')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 38dff5b..d062d10 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -21,6 +21,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.