From: Antoine Pitrou Date: Sun, 21 Sep 2014 19:15:42 +0000 (+0200) Subject: Issue #21332: Ensure that ``bufsize=1`` in subprocess.Popen() selects line buffering... X-Git-Tag: v3.5.0a1~886^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6e311aa748b123b1f1333c2c86b5904b57168276;p=thirdparty%2FPython%2Fcpython.git Issue #21332: Ensure that ``bufsize=1`` in subprocess.Popen() selects line buffering, rather than block buffering. --- 6e311aa748b123b1f1333c2c86b5904b57168276 diff --cc Misc/NEWS index 0c6c12d6e152,9e4c55ed43b9..df4a024d9378 --- a/Misc/NEWS +++ 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.