jpayne@69: jpayne@69: /* Interface to execute compiled code */ jpayne@69: jpayne@69: #ifndef Py_EVAL_H jpayne@69: #define Py_EVAL_H jpayne@69: #ifdef __cplusplus jpayne@69: extern "C" { jpayne@69: #endif jpayne@69: jpayne@69: PyAPI_FUNC(PyObject *) PyEval_EvalCode(PyObject *, PyObject *, PyObject *); jpayne@69: jpayne@69: PyAPI_FUNC(PyObject *) PyEval_EvalCodeEx(PyObject *co, jpayne@69: PyObject *globals, jpayne@69: PyObject *locals, jpayne@69: PyObject *const *args, int argc, jpayne@69: PyObject *const *kwds, int kwdc, jpayne@69: PyObject *const *defs, int defc, jpayne@69: PyObject *kwdefs, PyObject *closure); jpayne@69: jpayne@69: #ifndef Py_LIMITED_API jpayne@69: PyAPI_FUNC(PyObject *) _PyEval_EvalCodeWithName( jpayne@69: PyObject *co, jpayne@69: PyObject *globals, PyObject *locals, jpayne@69: PyObject *const *args, Py_ssize_t argcount, jpayne@69: PyObject *const *kwnames, PyObject *const *kwargs, jpayne@69: Py_ssize_t kwcount, int kwstep, jpayne@69: PyObject *const *defs, Py_ssize_t defcount, jpayne@69: PyObject *kwdefs, PyObject *closure, jpayne@69: PyObject *name, PyObject *qualname); jpayne@69: jpayne@69: PyAPI_FUNC(PyObject *) _PyEval_CallTracing(PyObject *func, PyObject *args); jpayne@69: #endif jpayne@69: jpayne@69: #ifdef __cplusplus jpayne@69: } jpayne@69: #endif jpayne@69: #endif /* !Py_EVAL_H */