Use the right types for a couple of fields of the type structure.

This commit is contained in:
Fred Drake 2002-03-29 22:46:04 +00:00
parent 0ffd14c9ea
commit fe5a5388c3
1 changed files with 2 additions and 2 deletions

View File

@ -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;