Staging
v0.5.1
https://github.com/python/cpython
Revision 305e5aac85d8350ef8501b5e53b91555b3d75b84 authored by Benjamin Peterson on 27 September 2013, 02:17:45 UTC, committed by Benjamin Peterson on 27 September 2013, 02:17:45 UTC
1 parent 369606d
Raw File
Tip revision: 305e5aac85d8350ef8501b5e53b91555b3d75b84 authored by Benjamin Peterson on 27 September 2013, 02:17:45 UTC
don't scale compiler stack frames if the recursion limit is huge (closes #19098)
Tip revision: 305e5aa
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(PyObject *, PyObject *, PyObject *);

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

#ifndef Py_LIMITED_API
PyAPI_FUNC(PyObject *) _PyEval_CallTracing(PyObject *func, PyObject *args);
#endif

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