Staging
v0.5.1
https://github.com/python/cpython
Revision f9290773fc026c5064fa96e1d06c3924e49fa89b authored by Christian Heimes on 03 December 2007, 19:53:57 UTC, committed by Christian Heimes on 03 December 2007, 19:53:57 UTC
1 parent e69c320
Raw File
Tip revision: f9290773fc026c5064fa96e1d06c3924e49fa89b authored by Christian Heimes on 03 December 2007, 19:53:57 UTC
Reverting last commit. I had some staled data from an attempted svnmerge in my local sandbox
Tip revision: f929077
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 *kwdefs, PyObject *closure);

PyAPI_FUNC(PyObject *) _PyEval_CallTracing(PyObject *func, PyObject *args);

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