summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-09-21 19:26:11 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-09-21 19:26:11 (GMT)
commitd7fc141c7d5c51b5217a6144248e2d1eff68bcb8 (patch)
treefd147155803216746fcf7dd610aa3220a9d845e2 /Misc/NEWS
parentc904e87c1317973440001f9afc4e0febfc344a4a (diff)
parent6e311aa748b123b1f1333c2c86b5904b57168276 (diff)
downloadcpython-d7fc141c7d5c51b5217a6144248e2d1eff68bcb8.zip
cpython-d7fc141c7d5c51b5217a6144248e2d1eff68bcb8.tar.gz
cpython-d7fc141c7d5c51b5217a6144248e2d1eff68bcb8.tar.bz2
Merge heads
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 1c4a4b0..99e6281 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -140,6 +140,9 @@ Library
- Issue #22423: Unhandled exception in thread no longer causes unhandled
AttributeError when sys.stderr is None.
+- 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.