summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2021-09-07 10:52:53 (GMT)
committerGitHub <noreply@github.com>2021-09-07 10:52:53 (GMT)
commitadc80a58f9683468e0ba5a6eed72040f7f6ba405 (patch)
treedbbdace61fd1a2e0071423f25b1d3fe29d913eb2 /Misc
parentaf8c78173742094ceee6f8ba53d791c4eaa357f9 (diff)
downloadcpython-adc80a58f9683468e0ba5a6eed72040f7f6ba405.zip
cpython-adc80a58f9683468e0ba5a6eed72040f7f6ba405.tar.gz
cpython-adc80a58f9683468e0ba5a6eed72040f7f6ba405.tar.bz2
bpo-44963: Implement send() and throw() methods for anext_awaitable objects (GH-27955)
Co-authored-by: Yury Selivanov <yury@edgedb.com> (cherry picked from commit 533e725821b15e2df2cd4479a34597c1d8faf616) Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2021-08-25-23-07-10.bpo-44963.5EET8y.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2021-08-25-23-07-10.bpo-44963.5EET8y.rst b/Misc/NEWS.d/next/Core and Builtins/2021-08-25-23-07-10.bpo-44963.5EET8y.rst
new file mode 100644
index 0000000..9a54bda
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2021-08-25-23-07-10.bpo-44963.5EET8y.rst
@@ -0,0 +1,2 @@
+Implement ``send()`` and ``throw()`` methods for ``anext_awaitable``
+objects. Patch by Pablo Galindo.