Staging
v0.5.1
https://github.com/python/cpython
Revision c032ee939bae3662017f6ff359fb1ed7d207f3f6 authored by Andrew M. Kuchling on 29 July 2006, 16:08:40 UTC, committed by Andrew M. Kuchling on 29 July 2006, 16:08:40 UTC
1 parent e49741d
Raw File
Tip revision: c032ee939bae3662017f6ff359fb1ed7d207f3f6 authored by Andrew M. Kuchling on 29 July 2006, 16:08:40 UTC
Set bug/patch count. Take a bow, everyone!
Tip revision: c032ee9
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