Staging
v0.5.1
https://github.com/python/cpython
Revision ef33dd6036aafbd3f06c1d56e2b1a81dae3da63c authored by Victor Stinner on 26 February 2019, 00:42:39 UTC, committed by larryhastings on 26 February 2019, 00:42:39 UTC
(cherry picked from commit a4ae828ee416a66d8c7bf5ee71d653c2cc6a26dd)
1 parent efec763
Raw File
Tip revision: ef33dd6036aafbd3f06c1d56e2b1a81dae3da63c authored by Victor Stinner on 26 February 2019, 00:42:39 UTC
closes bpo-34656: Avoid relying on signed overflow in _pickle memos. (GH-9261) (#11869)
Tip revision: ef33dd6
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(PyObject *, PyObject *, PyObject *);

PyAPI_FUNC(PyObject *) PyEval_EvalCodeEx(PyObject *co,
					PyObject *globals,
					PyObject *locals,
					PyObject **args, int argc,
					PyObject **kwds, int kwdc,
					PyObject **defs, int defc,
					PyObject *kwdefs, PyObject *closure);

#ifndef Py_LIMITED_API
PyAPI_FUNC(PyObject *) _PyEval_CallTracing(PyObject *func, PyObject *args);
#endif

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