From: Fred Drake Date: Fri, 12 Apr 2002 19:49:13 +0000 (+0000) Subject: Update the type of the tp_free slot. X-Git-Tag: v2.3c1~5995 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fd92304ae8eb900645660543b06310b3aa84b639;p=thirdparty%2FPython%2Fcpython.git Update the type of the tp_free slot. --- diff --git a/Doc/ext/typestruct.h b/Doc/ext/typestruct.h index 85ce049603b0..0afe375d4f0f 100644 --- a/Doc/ext/typestruct.h +++ b/Doc/ext/typestruct.h @@ -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 */