Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7f3f2c1

Browse files
committed
TRACE_REFS -> Py_TRACE_REFS
1 parent 4b0538c commit 7f3f2c1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Python/sysmodule.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ sys_getcounts(self, args)
182182
}
183183
#endif
184184

185-
#ifdef TRACE_REFS
185+
#ifdef Py_TRACE_REFS
186186
extern PyObject *getobjects Py_PROTO((PyObject *, PyObject *));
187187
#endif
188188
static struct methodlist sys_methods[] = {
@@ -191,7 +191,7 @@ static struct methodlist sys_methods[] = {
191191
#ifdef COUNT_ALLOCS
192192
{"getcounts", sys_getcounts, 0},
193193
#endif
194-
#ifdef TRACE_REFS
194+
#ifdef Py_TRACE_REFS
195195
{"getobjects", getobjects, 1},
196196
#endif
197197
#ifdef USE_MALLOPT

0 commit comments

Comments
 (0)