From fe5a5388c32199cedd9ec127695de12d348e7376 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Fri, 29 Mar 2002 22:46:04 +0000 Subject: Use the right types for a couple of fields of the type structure. --- Doc/ext/typestruct.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/ext/typestruct.h b/Doc/ext/typestruct.h index eb7ad00..85ce049 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; -- cgit v0.12