From: Richard Kojedzinszky Date: Tue, 20 Dec 2022 10:40:56 +0000 (+0100) Subject: gh-100348: Fix ref cycle in `asyncio._SelectorSocketTransport` with `_read_ready_cb... X-Git-Tag: v3.12.0a4~182 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a6331b605e8044a205a113e1db87d2b0a53d0222;p=thirdparty%2FPython%2Fcpython.git gh-100348: Fix ref cycle in `asyncio._SelectorSocketTransport` with `_read_ready_cb` (#100349) --- diff --git a/Lib/asyncio/selector_events.py b/Lib/asyncio/selector_events.py index 3d30006198f6..74f289f0e6f8 100644 --- a/Lib/asyncio/selector_events.py +++ b/Lib/asyncio/selector_events.py @@ -1133,6 +1133,10 @@ class _SelectorSocketTransport(_SelectorTransport): def _reset_empty_waiter(self): self._empty_waiter = None + def close(self): + self._read_ready_cb = None + super().close() + class _SelectorDatagramTransport(_SelectorTransport, transports.DatagramTransport): diff --git a/Misc/NEWS.d/next/Library/2022-12-19-19-30-06.gh-issue-100348.o7IAHh.rst b/Misc/NEWS.d/next/Library/2022-12-19-19-30-06.gh-issue-100348.o7IAHh.rst new file mode 100644 index 000000000000..b5d4f7ca998c --- /dev/null +++ b/Misc/NEWS.d/next/Library/2022-12-19-19-30-06.gh-issue-100348.o7IAHh.rst @@ -0,0 +1,2 @@ +Fix ref cycle in :class:`!asyncio._SelectorSocketTransport` by removing ``_read_ready_cb`` in ``close``. +