-
-
Notifications
You must be signed in to change notification settings - Fork 31.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gh-92841: Fix asyncio's RuntimeError: Event loop is closed #92842
Conversation
Note that the NEWS entry uses classDiagram
_ProactorBasePipeTransport <|-- _ProactorReadPipeTransport
_ProactorBasePipeTransport <|-- _ProactorBaseWritePipeTransport
_ProactorBasePipeTransport <|-- _ProactorDatagramTransport
_ProactorReadPipeTransport <|-- _ProactorDuplexPipeTransport
_ProactorBaseWritePipeTransport <|-- _ProactorDuplexPipeTransport
_ProactorReadPipeTransport <|-- _ProactorSocketTransport
_ProactorBaseWritePipeTransport <|-- _ProactorSocketTransport
|
Misc/NEWS.d/next/Windows/2022-05-16-11-45-06.gh-issue-92841.NQx107.rst
Outdated
Show resolved
Hide resolved
…x107.rst Co-authored-by: Steve Dower <steve.dower@microsoft.com>
Thanks @arhadthedev for the PR, and @zooba for merging it 🌮🎉.. I'm working now to backport this PR to: 3.10. |
Thanks @arhadthedev for the PR, and @zooba for merging it 🌮🎉.. I'm working now to backport this PR to: 3.11. |
…honGH-92842) (cherry picked from commit 33880b4) Co-authored-by: Oleg Iarygin <oleg@arhadthedev.net>
GH-92904 is a backport of this pull request to the 3.10 branch. |
…honGH-92842) (cherry picked from commit 33880b4) Co-authored-by: Oleg Iarygin <oleg@arhadthedev.net>
GH-92905 is a backport of this pull request to the 3.11 branch. |
Both
asyncio.selector_events._SelectorTransport
andasyncio.proactor_events._ProactorBasePipeTransport
check if an associated socket is left unclosed and emit a warning on a positive answer.However, further behavior differs. While
_SelectorTransport
closes the socket:the
_ProactorBasePipeTransport
attempts to close itself leaving the socked leaked:It looks like there was no plan to close the transport itself causing
<already closed parent loop>.call_soon()
.The deleters were introduced by 978a9af with no explanatory comment about the implementation difference.
Fixes (no autoclose) gh-92841, gh-91233, and gh-83413. Probably fixes (no autoclose) gh-81562.