]> granicus.if.org Git - python/commitdiff
TRACE_REFS -> Py_TRACE_REFS
authorGuido van Rossum <guido@python.org>
Thu, 23 May 1996 22:45:41 +0000 (22:45 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 23 May 1996 22:45:41 +0000 (22:45 +0000)
Python/sysmodule.c

index 10dd061ea6ceac4680272db4286877a9e4ae7932..17845f06197260eb63c748ec332c5332bac69956 100644 (file)
@@ -182,7 +182,7 @@ sys_getcounts(self, args)
 }
 #endif
 
-#ifdef TRACE_REFS
+#ifdef Py_TRACE_REFS
 extern PyObject *getobjects Py_PROTO((PyObject *, PyObject *));
 #endif
 static struct methodlist sys_methods[] = {
@@ -191,7 +191,7 @@ static struct methodlist sys_methods[] = {
 #ifdef COUNT_ALLOCS
        {"getcounts",   sys_getcounts, 0},
 #endif
-#ifdef TRACE_REFS
+#ifdef Py_TRACE_REFS
        {"getobjects",  getobjects, 1},
 #endif
 #ifdef USE_MALLOPT