summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2014-09-21 19:15:42 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2014-09-21 19:15:42 (GMT)
commit6e311aa748b123b1f1333c2c86b5904b57168276 (patch)
tree0577b6fab7a1380f5e552ba846d0fb108b5e57e2 /Misc/NEWS
parent9e7fbde67f55e8e5c21bc41568c7fe13e72b44bc (diff)
parentafe8d0646c9347960e99f5373d6cbd712b5376bb (diff)
downloadcpython-6e311aa748b123b1f1333c2c86b5904b57168276.zip
cpython-6e311aa748b123b1f1333c2c86b5904b57168276.tar.gz
cpython-6e311aa748b123b1f1333c2c86b5904b57168276.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 0c6c12d..df4a024 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -137,6 +137,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.