mirror of
https://github.com/python/cpython.git
synced 2024-12-01 11:15:56 +01:00
c22bfaae83
* Move all functions to call objects in a new Objects/call.c file. * Rename fast_function() to _PyFunction_FastCallKeywords(). * Copy null_error() from Objects/abstract.c * Inline type_error() in call.c to not have to copy it, it was only called once. * Export _PyEval_EvalCodeWithName() since it is now called from call.c.
38 lines
1.1 KiB
C
38 lines
1.1 KiB
C
|
|
/* 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_EvalCodeWithName(
|
|
PyObject *co,
|
|
PyObject *globals, PyObject *locals,
|
|
PyObject **args, Py_ssize_t argcount,
|
|
PyObject **kwnames, PyObject **kwargs,
|
|
Py_ssize_t kwcount, int kwstep,
|
|
PyObject **defs, Py_ssize_t defcount,
|
|
PyObject *kwdefs, PyObject *closure,
|
|
PyObject *name, PyObject *qualname);
|
|
|
|
PyAPI_FUNC(PyObject *) _PyEval_CallTracing(PyObject *func, PyObject *args);
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif /* !Py_EVAL_H */
|