Issue #10333: Remove ancient GC API, which has been deprecated since

Python 2.2.
This commit is contained in:
Antoine Pitrou 2011-01-04 00:00:31 +00:00
parent cae969e70a
commit 23683ef26d
4 changed files with 7 additions and 21 deletions

View file

@ -1511,11 +1511,3 @@ PyObject_GC_Del(void *op)
}
PyObject_FREE(g);
}
/* for binary compatibility with 2.2 */
#undef _PyObject_GC_Del
void
_PyObject_GC_Del(PyObject *op)
{
PyObject_GC_Del(op);
}