]> granicus.if.org Git - python/commitdiff
Issue #21332: Ensure that ``bufsize=1`` in subprocess.Popen() selects line buffering...
authorAntoine Pitrou <solipsis@pitrou.net>
Sun, 21 Sep 2014 19:15:42 +0000 (21:15 +0200)
committerAntoine Pitrou <solipsis@pitrou.net>
Sun, 21 Sep 2014 19:15:42 +0000 (21:15 +0200)
1  2 
Doc/library/subprocess.rst
Lib/subprocess.py
Misc/NEWS

Simple merge
Simple merge
diff --cc Misc/NEWS
index 0c6c12d6e152f2a5695175569f2554291d783cb7,9e4c55ed43b9563df735bbc6088306817230bd66..df4a024d93780c0f6cde05029dc85ca81f8af995
+++ b/Misc/NEWS
@@@ -137,8 -32,13 +137,11 @@@ Core and Builtin
  Library
  -------
  
+ - Issue #21332: Ensure that ``bufsize=1`` in subprocess.Popen() selects
+   line buffering, rather than block buffering.  Patch by Akira Li.
  - Issue #21091: Fix API bug: email.message.EmailMessage.is_attachment is now
 -  a method.  Since EmailMessage is provisional, we can change the API in a
 -  maintenance release, but we use a trick to remain backward compatible with
 -  3.4.0/1.
 +  a method.
  
  - Issue #21079: Fix email.message.EmailMessage.is_attachment to return the
    correct result when the header has parameters as well as a value.