summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2014-09-21 19:10:56 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2014-09-21 19:10:56 (GMT)
commitafe8d0646c9347960e99f5373d6cbd712b5376bb (patch)
tree1ece533b911f8668dd96e22f6d30e0d78a310c89 /Misc/NEWS
parent3f40c40dea5f68fa4f1711c9cfa04c4edf6f8f53 (diff)
downloadcpython-afe8d0646c9347960e99f5373d6cbd712b5376bb.zip
cpython-afe8d0646c9347960e99f5373d6cbd712b5376bb.tar.gz
cpython-afe8d0646c9347960e99f5373d6cbd712b5376bb.tar.bz2
Issue #21332: Ensure that ``bufsize=1`` in subprocess.Popen() selects line buffering, rather than block buffering.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 3560212..9e4c55e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -32,6 +32,9 @@ Core and Builtins
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