summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
Diffstat (limited to 'Doc')
-rw-r--r--Doc/ext/typestruct.h4
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;