struct PyMemberDef

Defined at line 18 of file ../../prebuilt/third_party/python3/linux-x64/include/python3.11/structmember.h

An array of PyMemberDef structures defines the name, type and offset

of selected members of a C structure. These can be read by

PyMember_GetOne() and set by PyMember_SetOne() (except if their READONLY

flag is set). The array must be terminated with an entry whose name

pointer is NULL.

Public Members

const char * name
int type
Py_ssize_t offset
int flags
const char * doc