You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When detecting errors caused by reference counting bugs (e.g., in 3rd party extension modules), it's useful to be able to compare the reference count of an object in a snapshot with the expected reference count based on the number of edges into that object: a mismatch may be evidence of a reference counting bug.
For this, it would be useful to be able to annotate the objects in an ObjectGraph with the result of calling sys.getrefcount on that object, suitably modified for local references.
The text was updated successfully, but these errors were encountered:
When detecting errors caused by reference counting bugs (e.g., in 3rd party extension modules), it's useful to be able to compare the reference count of an object in a snapshot with the expected reference count based on the number of edges into that object: a mismatch may be evidence of a reference counting bug.
For this, it would be useful to be able to annotate the objects in an
ObjectGraph
with the result of callingsys.getrefcount
on that object, suitably modified for local references.The text was updated successfully, but these errors were encountered: