summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2022-06-28 09:43:14 (GMT)
committerGitHub <noreply@github.com>2022-06-28 09:43:14 (GMT)
commit608ddd32779c0c2a2eb23d7295a4bb9af2895a4b (patch)
tree30b3466a836b3c1be2219cc3769e9d6e64cfea86
parent5e08eecb57d0d57c396d5f54468680490e6cd1cd (diff)
downloadcpython-608ddd32779c0c2a2eb23d7295a4bb9af2895a4b.zip
cpython-608ddd32779c0c2a2eb23d7295a4bb9af2895a4b.tar.gz
cpython-608ddd32779c0c2a2eb23d7295a4bb9af2895a4b.tar.bz2
gh-92841: Fix asyncio's RuntimeError: Event loop is closed (GH-92842) (GH-92904)
(cherry picked from commit 33880b4b1c60f54aa9e7fa02698a3c82eafe3dc7) Co-authored-by: Oleg Iarygin <oleg@arhadthedev.net>
-rw-r--r--Lib/asyncio/proactor_events.py2
-rw-r--r--Misc/NEWS.d/next/Windows/2022-05-16-11-45-06.gh-issue-92841.NQx107.rst2
2 files changed, 3 insertions, 1 deletions
diff --git a/Lib/asyncio/proactor_events.py b/Lib/asyncio/proactor_events.py
index 411685b..9657f96 100644
--- a/Lib/asyncio/proactor_events.py
+++ b/Lib/asyncio/proactor_events.py
@@ -113,7 +113,7 @@ class _ProactorBasePipeTransport(transports._FlowControlMixin,
def __del__(self, _warn=warnings.warn):
if self._sock is not None:
_warn(f"unclosed transport {self!r}", ResourceWarning, source=self)
- self.close()
+ self._sock.close()
def _fatal_error(self, exc, message='Fatal error on pipe transport'):
try:
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.