Classes | |
struct | PyGetSetDef |
struct | wrapperbase |
struct | PyDescrObject |
struct | PyMethodDescrObject |
struct | PyMemberDescrObject |
struct | PyGetSetDescrObject |
struct | PyWrapperDescrObject |
Macros | |
#define | PyWrapperFlag_KEYWORDS 1 /* wrapper function takes keyword args */ |
#define | PyDescr_COMMON |
#define | PyDescr_IsData(d) (Py_TYPE(d)->tp_descr_set != NULL) |
Typedefs | |
typedef PyObject *(* | getter) (PyObject *, void *) |
typedef int(* | setter) (PyObject *, PyObject *, void *) |
typedef struct PyGetSetDef | PyGetSetDef |
typedef PyObject *(* | wrapperfunc) (PyObject *self, PyObject *args, void *wrapped) |
typedef PyObject *(* | wrapperfunc_kwds) (PyObject *self, PyObject *args, void *wrapped, PyObject *kwds) |
Functions | |
PyAPI_DATA (PyTypeObject) PyWrapperDescr_Type | |
PyAPI_FUNC (PyObject *) PyDescr_NewMethod(PyTypeObject * | |
#define PyDescr_COMMON |
Definition at line 40 of file descrobject.h.
Definition at line 83 of file descrobject.h.
Definition at line 36 of file descrobject.h.
Definition at line 8 of file descrobject.h.
typedef struct PyGetSetDef PyGetSetDef |
Definition at line 9 of file descrobject.h.
Definition at line 19 of file descrobject.h.
typedef PyObject*(* wrapperfunc_kwds) (PyObject *self, PyObject *args, void *wrapped, PyObject *kwds) |
Definition at line 22 of file descrobject.h.
PyAPI_DATA | ( | PyTypeObject | ) |
PyAPI_FUNC | ( | PyObject * | ) |