Staging
v0.5.1
https://github.com/python/cpython
Revision 21c86b6151f74c9f3b2b55d0835d3a00ed365609 authored by Fred Drake on 18 December 2003, 15:06:58 UTC, committed by Fred Drake on 18 December 2003, 15:06:58 UTC
1 parent be42922
Raw File
Tip revision: 21c86b6151f74c9f3b2b55d0835d3a00ed365609 authored by Fred Drake on 18 December 2003, 15:06:58 UTC
Bump version number for release.
Tip revision: 21c86b6
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