Staging
v0.5.1
https://github.com/python/cpython
Revision a2963f09629a0a8c63e9acef79c1dcc0a040ddb6 authored by Elena Oat on 10 February 2020, 20:28:11 UTC, committed by GitHub on 10 February 2020, 20:28:11 UTC
1 parent c352e6c
Raw File
Tip revision: a2963f09629a0a8c63e9acef79c1dcc0a040ddb6 authored by Elena Oat on 10 February 2020, 20:28:11 UTC
bpo-39545: docs: do not use await in f-strings (GH-18434)
Tip revision: a2963f0
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