Closed
Description
This is used by list
and tuple
internally:
>>> import sys
>>> sys.getrefcount(None) == (1 << 32) - 1
True
>>> refs = [None] * 42
>>> sys.getrefcount(None) == (1 << 32) - 1
False
>>> del refs
>>> sys.getrefcount(None) == (1 << 32) - 1
True
I'll have a PR up in a bit.
CC: @ericsnowcurrently, @eduardo-elizondo
Linked PRs
Metadata
Metadata
Assignees
Labels
only security fixesonly security fixes(Objects, Python, Grammar, and Parser dirs)(Objects, Python, Grammar, and Parser dirs)The issue has been accepted as valid by a triager.The issue has been accepted as valid by a triager.An unexpected behavior, bug, or errorAn unexpected behavior, bug, or error
Projects
Status
Done