diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-08-30 11:00:21 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-30 11:00:21 (GMT) |
commit | 2e9f29e6a660a33f84d64a5bce5b422e72c06e39 (patch) | |
tree | 1271027d12786058e726036ece13af9a566d4cb4 /Misc/NEWS.d | |
parent | 126ec34558ef9e2fd688cc85b0951b559ce6a889 (diff) | |
download | cpython-2e9f29e6a660a33f84d64a5bce5b422e72c06e39.zip cpython-2e9f29e6a660a33f84d64a5bce5b422e72c06e39.tar.gz cpython-2e9f29e6a660a33f84d64a5bce5b422e72c06e39.tar.bz2 |
GH-74116: Allow multiple drain waiters for asyncio.StreamWriter (GH-94705) (#96395)
(cherry picked from commit e5b2453e61ba5376831093236d598ef5f9f1de61)
Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com>
Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com>
Diffstat (limited to 'Misc/NEWS.d')
-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. |