summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2022-09-08 15:42:08 (GMT)
committerGitHub <noreply@github.com>2022-09-08 15:42:08 (GMT)
commitf60bbf0a933259ece9de8fbe00d08e2dfa795f80 (patch)
tree8d528d17ce4da9a50f4eb40a4929f58b1ab19400 /Misc
parent280130f035ff9eb28b3bd0e842764c7f935611fc (diff)
downloadcpython-f60bbf0a933259ece9de8fbe00d08e2dfa795f80.zip
cpython-f60bbf0a933259ece9de8fbe00d08e2dfa795f80.tar.gz
cpython-f60bbf0a933259ece9de8fbe00d08e2dfa795f80.tar.bz2
GH-74116: Allow multiple drain waiters for asyncio.StreamWriter (GH-94705)
(cherry picked from commit e5b2453e61ba5376831093236d598ef5f9f1de61) Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2022-07-09-08-55-04.gh-issue-74116.0XwYC1.rst1
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.