diff options
author | Mark Shannon <mark@hotpy.org> | 2024-11-20 16:41:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-20 16:41:20 (GMT) |
commit | aea0c586d181abb897511b6b46d28bfbe4858f79 (patch) | |
tree | c80958b80c4cf5eeb75898c89b868440a2174b99 /Misc | |
parent | 7191b7662efcd79f2f19821c9b9fa2155df6f698 (diff) | |
download | cpython-aea0c586d181abb897511b6b46d28bfbe4858f79.zip cpython-aea0c586d181abb897511b6b46d28bfbe4858f79.tar.gz cpython-aea0c586d181abb897511b6b46d28bfbe4858f79.tar.bz2 |
GH-127010: Don't lazily track and untrack dicts (GH-127027)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core_and_Builtins/2024-11-19-17-17-32.gh-issue-127010.9Cl4bb.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core_and_Builtins/2024-11-19-17-17-32.gh-issue-127010.9Cl4bb.rst b/Misc/NEWS.d/next/Core_and_Builtins/2024-11-19-17-17-32.gh-issue-127010.9Cl4bb.rst new file mode 100644 index 0000000..36e379c --- /dev/null +++ b/Misc/NEWS.d/next/Core_and_Builtins/2024-11-19-17-17-32.gh-issue-127010.9Cl4bb.rst @@ -0,0 +1,4 @@ +Simplify GC tracking of dictionaries. All dictionaries are tracked when +created, rather than being lazily tracked when a trackable object was added +to them. This simplifies the code considerably and results in a slight +speedup. |