Searched refs:PyFrame_GetBack (Results 1 – 7 of 7) sorted by relevance
9 PyAPI_FUNC(PyFrameObject *) PyFrame_GetBack(PyFrameObject *frame);
41 .. c:function:: PyFrameObject* PyFrame_GetBack(PyFrameObject *frame)
806 PyFrameObject *back = PyFrame_GetBack(frame); in next_external_frame()833 PyFrameObject *back = PyFrame_GetBack(f); in setup_context()
103 PyObject *res = (PyObject *)PyFrame_GetBack(f); in frame_getback()1320 PyFrame_GetBack(PyFrameObject *frame) in PyFrame_GetBack() function
2413 * :c:func:`PyFrame_GetBack`2438 * ``f_back``: use :c:func:`PyFrame_GetBack`.2460 computed lazily. The :c:func:`PyFrame_GetBack` function must be called2479 Code defining ``PyFrame_GetBack()`` on Python 3.8 and older::2482 static inline PyFrameObject* PyFrame_GetBack(PyFrameObject *frame)
1284 Added :c:func:`PyFrame_GetBack` function: get the frame next outer frame.
2381 * :c:func:`PyFrame_GetBack`12582 - bpo-40421: New :c:func:`PyFrame_GetBack` function: get the frame next