Commit fe5a5388 authored by Fred Drake's avatar Fred Drake

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

parent 0ffd14c9
...@@ -55,8 +55,8 @@ typedef struct _typeobject { ...@@ -55,8 +55,8 @@ typedef struct _typeobject {
/* Attribute descriptor and subclassing stuff */ /* Attribute descriptor and subclassing stuff */
struct PyMethodDef *tp_methods; struct PyMethodDef *tp_methods;
struct memberlist *tp_members; struct PyMemberDef *tp_members;
struct getsetlist *tp_getset; struct PyGetSetDef *tp_getset;
struct _typeobject *tp_base; struct _typeobject *tp_base;
PyObject *tp_dict; PyObject *tp_dict;
descrgetfunc tp_descr_get; descrgetfunc tp_descr_get;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment