mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +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 */
|
||||
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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue