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