mirror of
https://github.com/python/cpython.git
synced 2025-11-18 10:19:40 +00:00
Use the right types for a couple of fields of the type structure.
This commit is contained in:
parent
0ffd14c9ea
commit
fe5a5388c3
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue