diff options
author | Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com> | 2022-08-29 18:31:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-29 18:31:11 (GMT) |
commit | e5b2453e61ba5376831093236d598ef5f9f1de61 (patch) | |
tree | a4ad8da010853f287dbb68a31eac23384be25269 /Misc | |
parent | 3d180e3ab21c5d41d1c46e3ef349b30ba409f300 (diff) | |
download | cpython-e5b2453e61ba5376831093236d598ef5f9f1de61.zip cpython-e5b2453e61ba5376831093236d598ef5f9f1de61.tar.gz cpython-e5b2453e61ba5376831093236d598ef5f9f1de61.tar.bz2 |
GH-74116: Allow multiple drain waiters for asyncio.StreamWriter (GH-94705)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2022-07-09-08-55-04.gh-issue-74116.0XwYC1.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-07-09-08-55-04.gh-issue-74116.0XwYC1.rst b/Misc/NEWS.d/next/Library/2022-07-09-08-55-04.gh-issue-74116.0XwYC1.rst new file mode 100644 index 0000000..3378259 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2022-07-09-08-55-04.gh-issue-74116.0XwYC1.rst @@ -0,0 +1 @@ +Allow :meth:`asyncio.StreamWriter.drain` to be awaited concurrently by multiple tasks. Patch by Kumar Aditya. |