diff options
author | Pablo Galindo Salgado <Pablogsal@gmail.com> | 2021-09-07 10:30:14 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-07 10:30:14 (GMT) |
commit | 533e725821b15e2df2cd4479a34597c1d8faf616 (patch) | |
tree | 1a4c443261f1d61c9e1a38c7aa964fcb01211f2c /Misc | |
parent | 4f88161f07538dfb24a43189fd59bf966cb40817 (diff) | |
download | cpython-533e725821b15e2df2cd4479a34597c1d8faf616.zip cpython-533e725821b15e2df2cd4479a34597c1d8faf616.tar.gz cpython-533e725821b15e2df2cd4479a34597c1d8faf616.tar.bz2 |
bpo-44963: Implement send() and throw() methods for anext_awaitable objects (GH-27955)
Co-authored-by: Yury Selivanov <yury@edgedb.com>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2021-08-25-23-07-10.bpo-44963.5EET8y.rst | 2 |
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. |