summaryrefslogtreecommitdiffstats
path: root/Objects/classobject.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-05-23 22:46:51 (GMT)
committerGuido van Rossum <guido@python.org>1996-05-23 22:46:51 (GMT)
commit441e4ab802cadf2543d2c9af1e4070c59f03a08c (patch)
treebdc25d65ad643e54a4b329bb2227c95f167e4f1d /Objects/classobject.c
parent7f3f2c1819ca3bd126c4793384dea811fcefc250 (diff)
downloadcpython-441e4ab802cadf2543d2c9af1e4070c59f03a08c.zip
cpython-441e4ab802cadf2543d2c9af1e4070c59f03a08c.tar.gz
cpython-441e4ab802cadf2543d2c9af1e4070c59f03a08c.tar.bz2
new debugger symbol names
Diffstat (limited to 'Objects/classobject.c')
-rw-r--r--Objects/classobject.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/Objects/classobject.c b/Objects/classobject.c
index 48ea2e7..f5a0d2a 100644
--- a/Objects/classobject.c
+++ b/Objects/classobject.c
@@ -347,8 +347,8 @@ instance_dealloc(inst)
object *del;
/* Call the __del__ method if it exists. First temporarily
revive the object and save the current exception, if any. */
-#ifdef TRACE_REFS
- /* much too complicated if TRACE_REFS defined */
+#ifdef Py_TRACE_REFS
+ /* much too complicated if Py_TRACE_REFS defined */
extern long ref_total;
inst->ob_type = &Instancetype;
NEWREF(inst);
@@ -356,9 +356,9 @@ instance_dealloc(inst)
#ifdef COUNT_ALLOCS
inst->ob_type->tp_alloc--; /* ditto */
#endif
-#else
+#else /* !Py_TRACE_REFS */
INCREF(inst);
-#endif /* TRACE_REFS */
+#endif /* !Py_TRACE_REFS */
err_fetch(&error_type, &error_value, &error_traceback);
if ((del = instance_getattr1(inst, "__del__")) != NULL) {
object *res = call_object(del, (object *)NULL);
@@ -375,13 +375,13 @@ instance_dealloc(inst)
#endif
return; /* __del__ added a reference; don't delete now */
}
-#ifdef TRACE_REFS
+#ifdef Py_TRACE_REFS
#ifdef COUNT_ALLOCS
inst->ob_type->tp_free--; /* compensate for increment in UNREF */
#endif
UNREF(inst);
inst->ob_type = NULL;
-#endif /* TRACE_REFS */
+#endif /* Py_TRACE_REFS */
DECREF(inst->in_class);
XDECREF(inst->in_dict);
free((ANY *)inst);