summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2022-07-29 12:38:02 (GMT)
committerGitHub <noreply@github.com>2022-07-29 12:38:02 (GMT)
commitefeda8b4a1fd8f1c510311c40e46d5fad65512a0 (patch)
treefd69a9f3c7fd20d380ea5177baf4332844b57a40 /Misc
parentc26470f0cc900dccf2a7ce4a915fc36596cdf289 (diff)
downloadcpython-efeda8b4a1fd8f1c510311c40e46d5fad65512a0.zip
cpython-efeda8b4a1fd8f1c510311c40e46d5fad65512a0.tar.gz
cpython-efeda8b4a1fd8f1c510311c40e46d5fad65512a0.tar.bz2
GH-95097: fix `asyncio.run` for tasks without `uncancel` method (GH-95211) (GH-95387)
(cherry picked from commit 54f48844d18bc6fb98849f15a2fc08f92ad240ea) Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com> Co-authored-by: Thomas Grainger <tagrain@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2022-07-24-18-00-42.gh-issue-95097.lu5qNf.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-07-24-18-00-42.gh-issue-95097.lu5qNf.rst b/Misc/NEWS.d/next/Library/2022-07-24-18-00-42.gh-issue-95097.lu5qNf.rst
new file mode 100644
index 0000000..2840f05
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2022-07-24-18-00-42.gh-issue-95097.lu5qNf.rst
@@ -0,0 +1 @@
+Fix :func:`asyncio.run` for :class:`asyncio.Task` implementations without :meth:`~asyncio.Task.uncancel` method. Patch by Kumar Aditya.