Update the type of the tp_free slot.

This commit is contained in:
Fred Drake 2002-04-12 19:49:13 +00:00
parent f495ef7466
commit fd92304ae8
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ typedef struct _typeobject {
initproc tp_init;
allocfunc tp_alloc;
newfunc tp_new;
destructor tp_free; /* Low-level free-memory routine */
freefunc tp_free; /* Low-level free-memory routine */
inquiry tp_is_gc; /* For PyObject_IS_GC */
PyObject *tp_bases;
PyObject *tp_mro; /* method resolution order */