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 /Misc | |
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)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2022-12-19-19-30-06.gh-issue-100348.o7IAHh.rst | 2 |
1 files changed, 2 insertions, 0 deletions
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``. + |