summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-05-23 22:45:41 (GMT)
committerGuido van Rossum <guido@python.org>1996-05-23 22:45:41 (GMT)
commit7f3f2c1819ca3bd126c4793384dea811fcefc250 (patch)
treef3504284db80abf09028d37ebd7535ee53d8132b /Python
parent4b0538c47239865d2e0542812fe365ec13a56e29 (diff)
downloadcpython-7f3f2c1819ca3bd126c4793384dea811fcefc250.zip
cpython-7f3f2c1819ca3bd126c4793384dea811fcefc250.tar.gz
cpython-7f3f2c1819ca3bd126c4793384dea811fcefc250.tar.bz2
TRACE_REFS -> Py_TRACE_REFS
Diffstat (limited to 'Python')
-rw-r--r--Python/sysmodule.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c
index 10dd061..17845f0 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