Home
last modified time | relevance | path

Searched refs:PyFrame_GetCode (Results 1 – 15 of 15) sorted by relevance

/third_party/python/Include/
Dpyframe.h15 PyAPI_FUNC(PyCodeObject *) PyFrame_GetCode(PyFrameObject *frame);
/third_party/python/Doc/c-api/
Dframe.rst60 .. c:function:: PyCodeObject* PyFrame_GetCode(PyFrameObject *frame)
/third_party/python/Python/
Dsuggestions.c225 PyCodeObject *code = PyFrame_GetCode(frame); in offer_suggestions_for_name_error()
Dtraceback.c943 code = PyFrame_GetCode(tb->tb_frame); in tb_printinternal()
D_warnings.c774 PyCodeObject *code = PyFrame_GetCode(frame); in is_internal_frame()
Dimport.c1507 PyCodeObject *code = PyFrame_GetCode(frame); in remove_importlib_frames()
/third_party/python/Modules/
D_lsprof.c414 PyCodeObject *code = PyFrame_GetCode(frame); in profiler_callback()
424 PyCodeObject *code = PyFrame_GetCode(frame); in profiler_callback()
/third_party/python/Objects/
Dframeobject.c97 return (PyObject *)PyFrame_GetCode(f); in frame_getcode()
1308 PyFrame_GetCode(PyFrameObject *frame) in PyFrame_GetCode() function
Dgenobject.c982 gen->gi_code = PyFrame_GetCode(f); in gen_new_with_qualname()
/third_party/python/PC/
Dpython3dll.c275 EXPORT_FUNC(PyFrame_GetCode)
/third_party/python/Doc/data/
Dstable_abi.dat287 function,PyFrame_GetCode,3.10,,
/third_party/python/Doc/whatsnew/
D3.11.rst2441 * ``f_code``: use :c:func:`PyFrame_GetCode`.
2469 Code defining ``PyFrame_GetCode()`` on Python 3.8 and older::
2472 static inline PyCodeObject* PyFrame_GetCode(PyFrameObject *frame)
D3.9.rst1283 * Added :c:func:`PyFrame_GetCode` function: get a frame code.
/third_party/python/Misc/
Dstable_abi.toml2171 [function.PyFrame_GetCode]
DNEWS12585 - bpo-40421: New :c:func:`PyFrame_GetCode` function: return a borrowed