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