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 /Doc | |
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 'Doc')
-rw-r--r-- | Doc/library/gc.rst | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Doc/library/gc.rst b/Doc/library/gc.rst index 1065ec3..480a9de 100644 --- a/Doc/library/gc.rst +++ b/Doc/library/gc.rst @@ -204,8 +204,6 @@ The :mod:`gc` module provides the following functions: >>> gc.is_tracked({}) False >>> gc.is_tracked({"a": 1}) - False - >>> gc.is_tracked({"a": []}) True .. versionadded:: 3.1 |