Staging
v0.5.1
https://github.com/python/cpython
Revision 0fe3be03926c3468ed4c10980d1a030c8ef4e37e authored by Miss Islington (bot) on 31 May 2018, 06:10:28 UTC, committed by Serhiy Storchaka on 31 May 2018, 06:10:28 UTC
(cherry picked from commit a5c42284e69fb309bdd17ee8c1c120d1be383012)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
1 parent c2870b6
Raw File
Tip revision: 0fe3be03926c3468ed4c10980d1a030c8ef4e37e authored by Miss Islington (bot) on 31 May 2018, 06:10:28 UTC
bpo-33677: Fix signatures of tp_clear handlers for AST and deque. (GH-7196) (GH-7269)
Tip revision: 0fe3be0
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