[Python-checkins] python/dist/src/Objects object.c,2.202,2.203
tim_one@users.sourceforge.net
tim_one@users.sourceforge.net
2003年3月22日 19:04:35 -0800
Update of /cvsroot/python/python/dist/src/Objects
In directory sc8-pr-cvs1:/tmp/cvs-serv24131/python/objects
Modified Files:
object.c
Log Message:
Oops! Used a wrong preprocessor symbol.
Index: object.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/object.c,v
retrieving revision 2.202
retrieving revision 2.203
diff -C2 -d -r2.202 -r2.203
*** object.c 23 Mar 2003 02:51:01 -0000 2.202
--- object.c 23 Mar 2003 03:04:32 -0000 2.203
***************
*** 90,94 ****
Py_INCREF(tp);
type_list = tp;
! #ifdef Py_REF_DEBUG
/* Also insert in the doubly-linked list of all objects. */
if (tp->_ob_next == NULL) {
--- 90,94 ----
Py_INCREF(tp);
type_list = tp;
! #ifdef Py_TRACE_REFS
/* Also insert in the doubly-linked list of all objects. */
if (tp->_ob_next == NULL) {