From: Tim Peters Date: Sun, 23 Mar 2003 03:04:32 +0000 (+0000) Subject: Oops! Used a wrong preprocessor symbol. X-Git-Tag: v2.3c1~1382 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3e40c7ff5bb54c4787290109b51394ad34ef815d;p=thirdparty%2FPython%2Fcpython.git Oops! Used a wrong preprocessor symbol. --- diff --git a/Objects/object.c b/Objects/object.c index 2332df837d7f..ecc25c7c5ec7 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;