]> granicus.if.org Git - python/commitdiff
new debugger symbol names
authorGuido van Rossum <guido@python.org>
Thu, 23 May 1996 22:46:51 +0000 (22:46 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 23 May 1996 22:46:51 +0000 (22:46 +0000)
Objects/classobject.c
Objects/stringobject.c
Objects/tupleobject.c

index 48ea2e7b1efef8f1054dff83952674af4aed9273..f5a0d2a36ca469e8a7c76779b18c0ffe2c2e1106 100644 (file)
@@ -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);
index ac03ff659476a495cfccebfd217a3da3c8387ec1..1e11c503cb282a926a631bd90515ed434a7f12ef 100644 (file)
@@ -507,7 +507,7 @@ resizestring(pv, newsize)
                return -1;
        }
        /* XXX UNREF/NEWREF interface should be more symmetrical */
-#ifdef REF_DEBUG
+#ifdef Py_REF_DEBUG
        --_Py_RefTotal;
 #endif
        UNREF(v);
index 2218e503200eb067edc43f14ddf3957467ce2d8e..19c3641d183c98cb5228f66639b035da9f17ae82 100644 (file)
@@ -418,7 +418,7 @@ resizetuple(pv, newsize, last_is_sticky)
        if (sizediff == 0)
                return 0;
        /* XXX UNREF/NEWREF interface should be more symmetrical */
-#ifdef REF_DEBUG
+#ifdef Py_REF_DEBUG
        --_Py_RefTotal;
 #endif
        UNREF(v);