Staging
v0.5.1
https://github.com/python/cpython
Revision e8cebba905d1e12941ef95a5f621c1390f166568 authored by Georg Brandl on 20 February 2006, 21:26:29 UTC, committed by Georg Brandl on 20 February 2006, 21:26:29 UTC
1 parent fea6059
Raw File
Tip revision: e8cebba905d1e12941ef95a5f621c1390f166568 authored by Georg Brandl on 20 February 2006, 21:26:29 UTC
Bug #947571: By default, urllib.urlopen() does not raise IOErrors
Tip revision: e8cebba
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