summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2003-03-23 03:04:32 (GMT)
committerTim Peters <tim.peters@gmail.com>2003-03-23 03:04:32 (GMT)
commit3e40c7ff5bb54c4787290109b51394ad34ef815d (patch)
tree2c9e49ae16ca17f8b1b668a10d03142112969e88 /Objects
parent78be7993b64958585bafdced0c86c06fde8155fb (diff)
downloadcpython-3e40c7ff5bb54c4787290109b51394ad34ef815d.zip
cpython-3e40c7ff5bb54c4787290109b51394ad34ef815d.tar.gz
cpython-3e40c7ff5bb54c4787290109b51394ad34ef815d.tar.bz2
Oops! Used a wrong preprocessor symbol.
Diffstat (limited to 'Objects')
-rw-r--r--Objects/object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/object.c b/Objects/object.c
index 2332df8..ecc25c7 100644
--- a/Objects/object.c
+++ b/Objects/object.c
@@ -89,7 +89,7 @@ inc_count(PyTypeObject *tp)
*/
Py_INCREF(tp);
type_list = tp;
-#ifdef Py_REF_DEBUG
+#ifdef Py_TRACE_REFS
/* Also insert in the doubly-linked list of all objects. */
if (tp->_ob_next == NULL) {
PyObject *op = (PyObject *)tp;