Home
last modified time | relevance | path

Searched refs:PyFrame_GetBack (Results 1 – 7 of 7) sorted by relevance

/third_party/python/Include/cpython/
Dpyframe.h9 PyAPI_FUNC(PyFrameObject *) PyFrame_GetBack(PyFrameObject *frame);
/third_party/python/Doc/c-api/
Dframe.rst41 .. c:function:: PyFrameObject* PyFrame_GetBack(PyFrameObject *frame)
/third_party/python/Python/
D_warnings.c806 PyFrameObject *back = PyFrame_GetBack(frame); in next_external_frame()
833 PyFrameObject *back = PyFrame_GetBack(f); in setup_context()
/third_party/python/Objects/
Dframeobject.c103 PyObject *res = (PyObject *)PyFrame_GetBack(f); in frame_getback()
1320 PyFrame_GetBack(PyFrameObject *frame) in PyFrame_GetBack() function
/third_party/python/Doc/whatsnew/
D3.11.rst2413 * :c:func:`PyFrame_GetBack`
2438 * ``f_back``: use :c:func:`PyFrame_GetBack`.
2460 computed lazily. The :c:func:`PyFrame_GetBack` function must be called
2479 Code defining ``PyFrame_GetBack()`` on Python 3.8 and older::
2482 static inline PyFrameObject* PyFrame_GetBack(PyFrameObject *frame)
D3.9.rst1284 Added :c:func:`PyFrame_GetBack` function: get the frame next outer frame.
/third_party/python/Misc/
DNEWS2381 * :c:func:`PyFrame_GetBack`
12582 - bpo-40421: New :c:func:`PyFrame_GetBack` function: get the frame next