diff options
author | Richard Kojedzinszky <rkojedzinszky@users.noreply.github.com> | 2022-12-20 10:40:56 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-20 10:40:56 (GMT) |
commit | a6331b605e8044a205a113e1db87d2b0a53d0222 (patch) | |
tree | 8a7fa159f027796a38d714c740716e09324e681a | |
parent | 39dfbb2d5dc47635f332bc13ca667293de6989ab (diff) | |
download | cpython-a6331b605e8044a205a113e1db87d2b0a53d0222.zip cpython-a6331b605e8044a205a113e1db87d2b0a53d0222.tar.gz cpython-a6331b605e8044a205a113e1db87d2b0a53d0222.tar.bz2 |
gh-100348: Fix ref cycle in `asyncio._SelectorSocketTransport` with `_read_ready_cb` (#100349)
-rw-r--r-- | Lib/asyncio/selector_events.py | 4 | ||||
-rw-r--r-- | Misc/NEWS.d/next/Library/2022-12-19-19-30-06.gh-issue-100348.o7IAHh.rst | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/Lib/asyncio/selector_events.py b/Lib/asyncio/selector_events.py index 3d30006..74f289f 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 0000000..b5d4f7c --- /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``. + |