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

Lines Matching refs:PyObject

18 typedef PyObject *(*PyCFunction)(PyObject *, PyObject *);
19 typedef PyObject *(*PyCFunctionWithKeywords)(PyObject *, PyObject *,
20 PyObject *);
21 typedef PyObject *(*PyNoArgsFunction)(PyObject *);
23 PyAPI_FUNC(PyCFunction) PyCFunction_GetFunction(PyObject *);
24 PyAPI_FUNC(PyObject *) PyCFunction_GetSelf(PyObject *);
25 PyAPI_FUNC(int) PyCFunction_GetFlags(PyObject *);
35 PyAPI_FUNC(PyObject *) PyCFunction_Call(PyObject *, PyObject *, PyObject *);
46 PyAPI_FUNC(PyObject *) Py_FindMethod(PyMethodDef[], PyObject *, const char *);
49 PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,
50 PyObject *);
78 PyAPI_FUNC(PyObject *) Py_FindMethodInChain(PyMethodChain *, PyObject *,
84 PyObject *m_self; /* Passed as 'self' arg to the C func, can be NULL */
85 PyObject *m_module; /* The __module__ attribute, can be anything */