From: Fred Drake Date: Fri, 29 Mar 2002 22:46:04 +0000 (+0000) Subject: Use the right types for a couple of fields of the type structure. X-Git-Tag: v2.3c1~6246 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fe5a5388c32199cedd9ec127695de12d348e7376;p=thirdparty%2FPython%2Fcpython.git Use the right types for a couple of fields of the type structure. --- diff --git a/Doc/ext/typestruct.h b/Doc/ext/typestruct.h index eb7ad00ff443..85ce049603b0 100644 --- a/Doc/ext/typestruct.h +++ b/Doc/ext/typestruct.h @@ -55,8 +55,8 @@ typedef struct _typeobject { /* Attribute descriptor and subclassing stuff */ struct PyMethodDef *tp_methods; - struct memberlist *tp_members; - struct getsetlist *tp_getset; + struct PyMemberDef *tp_members; + struct PyGetSetDef *tp_getset; struct _typeobject *tp_base; PyObject *tp_dict; descrgetfunc tp_descr_get;