Staging
v0.8.1
https://github.com/python/cpython
Revision 19f7ca25e5dc746b0f52d610ba1b2a80ec329c50 authored by Ezio Melotti on 09 May 2011, 04:27:20 UTC, committed by Ezio Melotti on 09 May 2011, 04:27:20 UTC
2 parent s fd69abb + 8269a44
Raw File
Tip revision: 19f7ca25e5dc746b0f52d610ba1b2a80ec329c50 authored by Ezio Melotti on 09 May 2011, 04:27:20 UTC
#11910: merge with 3.1.
Tip revision: 19f7ca2
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