Chris@87: Chris@87: /* Interface to execute compiled code */ Chris@87: Chris@87: #ifndef Py_EVAL_H Chris@87: #define Py_EVAL_H Chris@87: #ifdef __cplusplus Chris@87: extern "C" { Chris@87: #endif Chris@87: Chris@87: PyAPI_FUNC(PyObject *) PyEval_EvalCode(PyCodeObject *, PyObject *, PyObject *); Chris@87: Chris@87: PyAPI_FUNC(PyObject *) PyEval_EvalCodeEx(PyCodeObject *co, Chris@87: PyObject *globals, Chris@87: PyObject *locals, Chris@87: PyObject **args, int argc, Chris@87: PyObject **kwds, int kwdc, Chris@87: PyObject **defs, int defc, Chris@87: PyObject *closure); Chris@87: Chris@87: PyAPI_FUNC(PyObject *) _PyEval_CallTracing(PyObject *func, PyObject *args); Chris@87: Chris@87: #ifdef __cplusplus Chris@87: } Chris@87: #endif Chris@87: #endif /* !Py_EVAL_H */