Closed
Description
Some objects seem to have unreasonably large refcounts, and this is not documented in the docs nor on the changelog.
3.10.6:
>>> from sys import getrefcount as ref
>>> ref(0)
409
>>> ref("a")
15
>>> ref(1000)
3
3.11.0rc1:
>>> from sys import getrefcount as ref
>>> ref(0)
1000000594
>>> ref("a")
1000000009
>>> ref(1000)
3