Make _PyObject_GC_UnTrack do nothing if WITH_CYCLE_GC is not defined.

This commit is contained in:
Neil Schemenauer 2002-03-29 03:04:25 +00:00
parent 95b62a6dd4
commit b883310d59
1 changed files with 2 additions and 0 deletions

View File

@ -819,9 +819,11 @@ _PyObject_GC_Track(PyObject *op)
void
_PyObject_GC_UnTrack(PyObject *op)
{
#ifdef WITH_CYCLE_GC
PyGC_Head *gc = AS_GC(op);
if (gc->gc.gc_next != NULL)
_PyObject_GC_UNTRACK(op);
#endif
}
PyObject *