Home | History | Annotate | Download | only in python2.7

Lines Matching refs:PyObject

8 typedef PyObject *(*getter)(PyObject *, void *);
9 typedef int (*setter)(PyObject *, PyObject *, void *);
19 typedef PyObject *(*wrapperfunc)(PyObject *self, PyObject *args,
22 typedef PyObject *(*wrapperfunc_kwds)(PyObject *self, PyObject *args,
23 void *wrapped, PyObject *kwds);
32 PyObject *name_strobj;
43 PyObject *d_name
75 PyAPI_FUNC(PyObject *) PyDescr_NewMethod(PyTypeObject *, PyMethodDef *);
76 PyAPI_FUNC(PyObject *) PyDescr_NewClassMethod(PyTypeObject *, PyMethodDef *);
77 PyAPI_FUNC(PyObject *) PyDescr_NewMember(PyTypeObject *,
79 PyAPI_FUNC(PyObject *) PyDescr_NewGetSet(PyTypeObject *,
81 PyAPI_FUNC(PyObject *) PyDescr_NewWrapper(PyTypeObject *,
85 PyAPI_FUNC(PyObject *) PyDictProxy_New(PyObject *);
86 PyAPI_FUNC(PyObject *) PyWrapper_New(PyObject *, PyObject *);