diff options
author | Fred Drake <fdrake@acm.org> | 2002-03-29 22:46:04 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2002-03-29 22:46:04 (GMT) |
commit | fe5a5388c32199cedd9ec127695de12d348e7376 (patch) | |
tree | a31dd05c64995152432f3042a566d1c3407f7501 /Doc/ext | |
parent | 0ffd14c9eae9b0241bb9332ec31d96e35ac8bf76 (diff) | |
download | cpython-fe5a5388c32199cedd9ec127695de12d348e7376.zip cpython-fe5a5388c32199cedd9ec127695de12d348e7376.tar.gz cpython-fe5a5388c32199cedd9ec127695de12d348e7376.tar.bz2 |
Use the right types for a couple of fields of the type structure.
Diffstat (limited to 'Doc/ext')
-rw-r--r-- | Doc/ext/typestruct.h | 4 |
1 files 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; |