diff options
author | Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com> | 2022-08-15 17:02:47 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-15 17:02:47 (GMT) |
commit | 914f6367a0d015986dafa7a9d542e24192753b6b (patch) | |
tree | 213d940fc16cdfdb81d55bd5c608c09fe24020c6 /Misc | |
parent | 2fa03b1b0708d5d74630c351ec9abd2aac7550da (diff) | |
download | cpython-914f6367a0d015986dafa7a9d542e24192753b6b.zip cpython-914f6367a0d015986dafa7a9d542e24192753b6b.tar.gz cpython-914f6367a0d015986dafa7a9d542e24192753b6b.tar.bz2 |
GH-95899: fix asyncio.Runner to call set_event_loop only once (#95900)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2022-08-11-18-52-17.gh-issue-95899._Bi4uG.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-08-11-18-52-17.gh-issue-95899._Bi4uG.rst b/Misc/NEWS.d/next/Library/2022-08-11-18-52-17.gh-issue-95899._Bi4uG.rst new file mode 100644 index 0000000..d2386cf --- /dev/null +++ b/Misc/NEWS.d/next/Library/2022-08-11-18-52-17.gh-issue-95899._Bi4uG.rst @@ -0,0 +1 @@ +Fix :class:`asyncio.Runner` to call :func:`asyncio.set_event_loop` only once to avoid calling :meth:`~asyncio.AbstractChildWatcher.attach_loop` multiple times on child watchers. Patch by Kumar Aditya. |