1992-08-05 16:58:53 -03:00
|
|
|
|
|
|
|
/* Interface to execute compiled code */
|
|
|
|
|
2000-07-08 20:37:28 -03:00
|
|
|
#ifndef Py_EVAL_H
|
|
|
|
#define Py_EVAL_H
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2002-08-12 04:21:58 -03:00
|
|
|
PyAPI_FUNC(PyObject *) PyEval_EvalCode(PyCodeObject *, PyObject *, PyObject *);
|
1993-07-28 06:05:47 -03:00
|
|
|
|
2002-08-12 04:21:58 -03:00
|
|
|
PyAPI_FUNC(PyObject *) PyEval_EvalCodeEx(PyCodeObject *co,
|
2001-08-02 01:15:00 -03:00
|
|
|
PyObject *globals,
|
|
|
|
PyObject *locals,
|
|
|
|
PyObject **args, int argc,
|
|
|
|
PyObject **kwds, int kwdc,
|
|
|
|
PyObject **defs, int defc,
|
|
|
|
PyObject *closure);
|
|
|
|
|
2003-04-09 16:06:21 -03:00
|
|
|
PyAPI_FUNC(PyObject *) _PyEval_CallTracing(PyObject *func, PyObject *args);
|
|
|
|
|
1993-07-28 06:05:47 -03:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* !Py_EVAL_H */
|