From: Guido van Rossum Date: Thu, 23 May 1996 22:45:41 +0000 (+0000) Subject: TRACE_REFS -> Py_TRACE_REFS X-Git-Tag: v1.4b1~157 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7f3f2c1819ca3bd126c4793384dea811fcefc250;p=thirdparty%2FPython%2Fcpython.git TRACE_REFS -> Py_TRACE_REFS --- diff --git a/Python/sysmodule.c b/Python/sysmodule.c index 10dd061ea6ce..17845f061972 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -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