mirror of
https://github.com/python/cpython.git
synced 2025-08-03 08:34:29 +00:00
Implement the frame evaluation API aspect of PEP 523.
This commit is contained in:
parent
625cb379f7
commit
3cebf93872
6 changed files with 47 additions and 3 deletions
|
@ -119,6 +119,9 @@ PyAPI_FUNC(const char *) PyEval_GetFuncDesc(PyObject *);
|
|||
PyAPI_FUNC(PyObject *) PyEval_GetCallStats(PyObject *);
|
||||
PyAPI_FUNC(PyObject *) PyEval_EvalFrame(struct _frame *);
|
||||
PyAPI_FUNC(PyObject *) PyEval_EvalFrameEx(struct _frame *f, int exc);
|
||||
#ifndef Py_LIMITED_API
|
||||
PyAPI_FUNC(PyObject *) _PyEval_EvalFrameDefault(struct _frame *f, int exc);
|
||||
#endif
|
||||
|
||||
/* Interface for threads.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue