summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2018-09-13 23:53:49 (GMT)
committerGitHub <noreply@github.com>2018-09-13 23:53:49 (GMT)
commit11194c877c902a6c3b769d85be887c2272e0a541 (patch)
tree8181f75217256e9035a177cee53916e4fa6eacab /Misc
parent413118ebf3162418639a5c4af14b02d26571a02c (diff)
downloadcpython-11194c877c902a6c3b769d85be887c2272e0a541.zip
cpython-11194c877c902a6c3b769d85be887c2272e0a541.tar.gz
cpython-11194c877c902a6c3b769d85be887c2272e0a541.tar.bz2
bpo-34666: Implement stream.awrite() and stream.aclose() (GH-9274)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2018-09-13-11-49-52.bpo-34666.3uLtWv.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-09-13-11-49-52.bpo-34666.3uLtWv.rst b/Misc/NEWS.d/next/Library/2018-09-13-11-49-52.bpo-34666.3uLtWv.rst
new file mode 100644
index 0000000..be82cfe
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-09-13-11-49-52.bpo-34666.3uLtWv.rst
@@ -0,0 +1,3 @@
+Implement ``asyncio.StreamWriter.awrite`` and
+``asyncio.StreamWriter.aclose()`` coroutines. Methods are needed for
+providing a consistent stream API with control flow switched on by default.