diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2019-05-09 19:14:58 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-09 19:14:58 (GMT) |
commit | a076e4f5e42b85664693191d04cfb33e2f9acfa5 (patch) | |
tree | 3b70de541e9e742bde047631a2db60078ad18e35 /Misc | |
parent | 3b2f9ab31db81405650325920465378532ab2d78 (diff) | |
download | cpython-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.rst | 2 |
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() |