summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2019-05-09 19:14:58 (GMT)
committerGitHub <noreply@github.com>2019-05-09 19:14:58 (GMT)
commita076e4f5e42b85664693191d04cfb33e2f9acfa5 (patch)
tree3b70de541e9e742bde047631a2db60078ad18e35 /Misc
parent3b2f9ab31db81405650325920465378532ab2d78 (diff)
downloadcpython-a076e4f5e42b85664693191d04cfb33e2f9acfa5.zip
cpython-a076e4f5e42b85664693191d04cfb33e2f9acfa5.tar.gz
cpython-a076e4f5e42b85664693191d04cfb33e2f9acfa5.tar.bz2
bpo-36802: Drop awrite()/aclose(), support await write() and await close() instead (#13099)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2019-05-05-10-12-23.bpo-36802.HYMc8P.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-05-05-10-12-23.bpo-36802.HYMc8P.rst b/Misc/NEWS.d/next/Library/2019-05-05-10-12-23.bpo-36802.HYMc8P.rst
new file mode 100644
index 0000000..f59863b
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-05-05-10-12-23.bpo-36802.HYMc8P.rst
@@ -0,0 +1,2 @@
+Provide both sync and async calls for StreamWriter.write() and
+StreamWriter.close()