Staging
v0.5.1
https://github.com/python/cpython
Revision 46ce27ab1e22ca98957e0900c6a2415b86578b2e authored by Gregory P. Smith on 18 March 2013, 23:58:50 UTC, committed by Gregory P. Smith on 18 March 2013, 23:58:50 UTC
specifically addresses a stack misalignment issue on x86 and issues on
some more recent platforms.
1 parent bebf75f
Raw File
Tip revision: 46ce27ab1e22ca98957e0900c6a2415b86578b2e authored by Gregory P. Smith on 18 March 2013, 23:58:50 UTC
Fixes issue #17192: Update the ctypes module's libffi to v3.0.13. This
Tip revision: 46ce27a
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