cpython/Include/eval.h

28 lines
597 B
C
Raw Normal View History

/* Interface to execute compiled code */
#ifndef Py_EVAL_H
#define Py_EVAL_H
#ifdef __cplusplus
extern "C" {
#endif
2010-12-03 16:14:31 -04:00
PyAPI_FUNC(PyObject *) PyEval_EvalCode(PyObject *, PyObject *, PyObject *);
2010-12-03 16:14:31 -04:00
PyAPI_FUNC(PyObject *) PyEval_EvalCodeEx(PyObject *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 *kwdefs, PyObject *closure);
2001-08-02 01:15:00 -03:00
2010-12-03 16:14:31 -04:00
#ifndef Py_LIMITED_API
PyAPI_FUNC(PyObject *) _PyEval_CallTracing(PyObject *func, PyObject *args);
2010-12-03 16:14:31 -04:00
#endif
#ifdef __cplusplus
}
#endif
#endif /* !Py_EVAL_H */