Staging
v0.8.1
https://github.com/python/cpython
Revision 919491d9bbad97e7b161d9c8ae11f1000bb170b8 authored by Andrew M. Kuchling on 19 October 2004, 19:34:07 UTC, committed by Andrew M. Kuchling on 19 October 2004, 19:34:07 UTC
1 parent e2f12bb
Raw File
Tip revision: 919491d9bbad97e7b161d9c8ae11f1000bb170b8 authored by Andrew M. Kuchling on 19 October 2004, 19:34:07 UTC
[Bug #1048816] Fix bug when you do Ctrl-K at the start of a line; fix from Stefan Heimann
Tip revision: 919491d
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