summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-02-18 21:00:53 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2014-02-18 21:00:53 (GMT)
commitd5c8ce7cc03d81402b2fcdc023fb6ea44ac70f25 (patch)
tree0d0c0102e3941fdb28ef698e1034049c542c759b /Misc
parent9e5a9876ad3b666390f77aadfb02b303ff2748bd (diff)
downloadcpython-d5c8ce7cc03d81402b2fcdc023fb6ea44ac70f25.zip
cpython-d5c8ce7cc03d81402b2fcdc023fb6ea44ac70f25.tar.gz
cpython-d5c8ce7cc03d81402b2fcdc023fb6ea44ac70f25.tar.bz2
Issue #19612: On Windows, subprocess.Popen.communicate() now ignores
OSError(22, 'Invalid argument') when writing input data into stdin, whereas the process already exited.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS6
1 files changed, 5 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2111147..aed4eff 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -20,6 +20,10 @@ Core and Builtins
Library
-------
+- Issue #19612: On Windows, subprocess.Popen.communicate() now ignores
+ OSError(22, 'Invalid argument') when writing input data into stdin, whereas
+ the process already exited.
+
- Issue #6815: os.path.expandvars() now supports non-ASCII environment
variables names and values.
@@ -27,7 +31,7 @@ Library
Based on patch by Stephen Tu.
- Issue #8478: Untokenizer.compat processes first token from iterator input.
- Patch based on lines from Georg Brandl, Eric Snow, and Gareth Rees.
+ Patch based on lines from Georg Brandl, Eric Snow, and Gareth Rees.
- Issue #20594: Avoid name clash with the libc function posix_close.