Viewing the refcount of an object

suggest change
>>> import sys
>>> a = object()
>>> sys.getrefcount(a)
2
>>> b = a
>>> sys.getrefcount(a)
3
>>> del b
>>> sys.getrefcount(a)
2

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents