svn+ssh://pythondev@svn.python.org/python/trunk
........
r70550 | antoine.pitrou | 2009-03-23 20:17:00 +0100 (lun., 23 mars 2009) | 3 lines
The tracking statistics were actually too pessimistic
........
_PyObject_GC_MAY_BE_TRACKED(ep[i].me_key))
return;
}
+ DECREASE_TRACK_COUNT
_PyObject_GC_UNTRACK(op);
}
{
register PyTupleObject *op;
Py_ssize_t i;
-#ifdef SHOW_TRACK_COUNT
- count_tracked++;
-#endif
if (size < 0) {
PyErr_BadInternalCall();
return NULL;
++numfree[0];
Py_INCREF(op); /* extra INCREF so that this is never freed */
}
+#endif
+#ifdef SHOW_TRACK_COUNT
+ count_tracked++;
#endif
_PyObject_GC_TRACK(op);
return (PyObject *) op;