Home | History | Annotate | Download | only in Include

Lines Matching refs:PyObject

10 PyAPI_FUNC(PyObject *) PyEval_EvalCode(PyCodeObject *, PyObject *, PyObject *);
12 PyAPI_FUNC(PyObject *) PyEval_EvalCodeEx(PyCodeObject *co,
13 PyObject *globals,
14 PyObject *locals,
15 PyObject **args, int argc,
16 PyObject **kwds, int kwdc,
17 PyObject **defs, int defc,
18 PyObject *closure);
20 PyAPI_FUNC(PyObject *) _PyEval_CallTracing(PyObject *func, PyObject *args);