Staging
v0.5.1
https://github.com/python/cpython
Revision 296681e105e0c1a9b3f42fc540cd2a982665da8c authored by Georg Brandl on 25 August 2005, 22:14:21 UTC, committed by Georg Brandl on 25 August 2005, 22:14:21 UTC
1 parent 900a84a
Raw File
Tip revision: 296681e105e0c1a9b3f42fc540cd2a982665da8c authored by Georg Brandl on 25 August 2005, 22:14:21 UTC
backport bug [ 1262320 ] minidom.py alternate newl support is broken
Tip revision: 296681e
eval.h

/* Interface to execute compiled code */

#ifndef Py_EVAL_H
#define Py_EVAL_H
#ifdef __cplusplus
extern "C" {
#endif

PyAPI_FUNC(PyObject *) PyEval_EvalCode(PyCodeObject *, PyObject *, PyObject *);

PyAPI_FUNC(PyObject *) PyEval_EvalCodeEx(PyCodeObject *co,
					PyObject *globals,
					PyObject *locals,
					PyObject **args, int argc,
					PyObject **kwds, int kwdc,
					PyObject **defs, int defc,
					PyObject *closure);

PyAPI_FUNC(PyObject *) _PyEval_CallTracing(PyObject *func, PyObject *args);

#ifdef __cplusplus
}
#endif
#endif /* !Py_EVAL_H */
back to top