Home
last modified time | relevance | path

Searched refs:PyThreadState_GetFrame (Results 1 – 13 of 13) sorted by relevance

/external/python/cpython3/Include/
Dpystate.h90 PyAPI_FUNC(PyFrameObject*) PyThreadState_GetFrame(PyThreadState *tstate);
/external/python/cpython3/Doc/c-api/
Dreflection.rst31 See also :c:func:`PyThreadState_GetFrame`.
Dinit.rst1075 .. c:function:: PyFrameObject* PyThreadState_GetFrame(PyThreadState *tstate)
/external/python/cpython3/Python/
Dtraceback.c801 frame = PyThreadState_GetFrame(tstate); in dump_traceback()
D_warnings.c840 PyFrameObject *f = PyThreadState_GetFrame(tstate); in setup_context()
Dpystate.c1036 PyThreadState_GetFrame(PyThreadState *tstate) in PyThreadState_GetFrame() function
Dsysmodule.c1790 PyFrameObject *f = PyThreadState_GetFrame(tstate); in sys__getframe_impl()
/external/python/cpython3/Modules/
D_tracemalloc.c398 PyFrameObject *pyframe = PyThreadState_GetFrame(tstate); in traceback_get_frames()
D_xxsubinterpretersmodule.c1845 PyFrameObject *frame = PyThreadState_GetFrame(tstate); in _is_running()
/external/python/cpython3/Misc/NEWS.d/
D3.9.0b1.rst899 The :c:func:`PyThreadState_GetFrame` function now returns a strong reference
D3.9.0a5.rst1156 Add :c:func:`PyThreadState_GetFrame` function: get the current frame of a
/external/python/cpython3/Doc/whatsnew/
D3.9.rst1254 Added :c:func:`PyThreadState_GetFrame` function to get the current frame of a
/external/python/cpython3/Objects/
Dtypeobject.c8157 PyFrameObject *frame = PyThreadState_GetFrame(tstate); in super_init()