summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSeth M. Larson <SethMichaelLarson@users.noreply.github.com>2017-03-03 04:21:18 (GMT)
committerYury Selivanov <yselivanov@gmail.com>2017-03-03 04:21:18 (GMT)
commit481cb70a724687d12553d38a749c16034af68a1e (patch)
treede7694fa41f50dca1b20e114030edf3cc6d11ae5 /Misc
parent398ff91ac0b8f4d930cd5d9e3e6a4bf247f810ef (diff)
downloadcpython-481cb70a724687d12553d38a749c16034af68a1e.zip
cpython-481cb70a724687d12553d38a749c16034af68a1e.tar.gz
cpython-481cb70a724687d12553d38a749c16034af68a1e.tar.bz2
bpo-29704: Fix asyncio.SubprocessStreamProtocol closing (#405)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 12f57f9..3c59c75 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -259,6 +259,9 @@ Extension Modules
Library
-------
+- bpo-29704: asyncio.subprocess.SubprocessStreamProtocol no longer closes before
+ all pipes are closed.
+
- bpo-29271: Fix Task.current_task and Task.all_tasks implemented in C
to accept None argument as their pure Python implementation.