diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2014-09-21 19:15:42 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2014-09-21 19:15:42 (GMT) |
commit | 6e311aa748b123b1f1333c2c86b5904b57168276 (patch) | |
tree | 0577b6fab7a1380f5e552ba846d0fb108b5e57e2 /Misc/NEWS | |
parent | 9e7fbde67f55e8e5c21bc41568c7fe13e72b44bc (diff) | |
parent | afe8d0646c9347960e99f5373d6cbd712b5376bb (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |