diff options
author | Thomas Grainger <tagrain@gmail.com> | 2025-01-07 11:44:57 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-07 11:44:57 (GMT) |
commit | 61b9811ac6843e22b5896ef96030d421b79cd892 (patch) | |
tree | 3f29fef0b3d767a290bd51c4b1429fb581af3885 /Misc | |
parent | 6ea04da27036eaa69d65150148bb8c537d9beacf (diff) | |
download | cpython-61b9811ac6843e22b5896ef96030d421b79cd892.zip cpython-61b9811ac6843e22b5896ef96030d421b79cd892.tar.gz cpython-61b9811ac6843e22b5896ef96030d421b79cd892.tar.bz2 |
gh-128552: fix refcycles in eager task creation (#128553)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2025-01-06-18-41-08.gh-issue-128552.fV-f8j.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2025-01-06-18-41-08.gh-issue-128552.fV-f8j.rst b/Misc/NEWS.d/next/Library/2025-01-06-18-41-08.gh-issue-128552.fV-f8j.rst new file mode 100644 index 0000000..83816f7 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2025-01-06-18-41-08.gh-issue-128552.fV-f8j.rst @@ -0,0 +1 @@ +Fix cyclic garbage introduced by :meth:`asyncio.loop.create_task` and :meth:`asyncio.TaskGroup.create_task` holding a reference to the created task if it is eager. |