diff options
author | Armin Rigo <arigo@tunes.org> | 2006-04-12 17:06:05 (GMT) |
---|---|---|
committer | Armin Rigo <arigo@tunes.org> | 2006-04-12 17:06:05 (GMT) |
commit | e170937af6463d92e95cea907964a23dff521f31 (patch) | |
tree | c8c4deb1ad0655eeedeef6754932db4afec7e930 /Python/sysmodule.c | |
parent | 314fce92dd12a8ff82876bd18845a2249a931fae (diff) | |
download | cpython-e170937af6463d92e95cea907964a23dff521f31.zip cpython-e170937af6463d92e95cea907964a23dff521f31.tar.gz cpython-e170937af6463d92e95cea907964a23dff521f31.tar.bz2 |
Ignore the references to the dummy objects used as deleted keys
in dicts and sets when computing the total number of references.
Diffstat (limited to 'Python/sysmodule.c')
-rw-r--r-- | Python/sysmodule.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c index 4a52742..cbf0d8f 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -604,10 +604,9 @@ sys_getrefcount(PyObject *self, PyObject *arg) static PyObject * sys_gettotalrefcount(PyObject *self) { - return PyInt_FromSsize_t(_Py_RefTotal); + return PyInt_FromSsize_t(_Py_GetRefTotal()); } - -#endif /* Py_TRACE_REFS */ +#endif /* Py_REF_DEBUG */ PyDoc_STRVAR(getrefcount_doc, "getrefcount(object) -> integer\n\ |