diff options
author | Oleg Iarygin <oleg@arhadthedev.net> | 2022-05-17 22:27:32 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-17 22:27:32 (GMT) |
commit | 33880b4b1c60f54aa9e7fa02698a3c82eafe3dc7 (patch) | |
tree | 494016f49d778fc1d706a93a63e40e8355992e99 /Misc | |
parent | 6b932cb13376b026d316d4f94679e66974d837d8 (diff) | |
download | cpython-33880b4b1c60f54aa9e7fa02698a3c82eafe3dc7.zip cpython-33880b4b1c60f54aa9e7fa02698a3c82eafe3dc7.tar.gz cpython-33880b4b1c60f54aa9e7fa02698a3c82eafe3dc7.tar.bz2 |
gh-92841: Fix asyncio's RuntimeError: Event loop is closed (GH-92842)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Windows/2022-05-16-11-45-06.gh-issue-92841.NQx107.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Windows/2022-05-16-11-45-06.gh-issue-92841.NQx107.rst b/Misc/NEWS.d/next/Windows/2022-05-16-11-45-06.gh-issue-92841.NQx107.rst new file mode 100644 index 0000000..5e1897e --- /dev/null +++ b/Misc/NEWS.d/next/Windows/2022-05-16-11-45-06.gh-issue-92841.NQx107.rst @@ -0,0 +1,2 @@ +:mod:`asyncio` no longer throws ``RuntimeError: Event loop is closed`` on +interpreter exit after asynchronous socket activity. Patch by Oleg Iarygin. |