Home
last modified time | relevance | path

Searched refs:PyFrame_FastToLocalsWithError (Results 1 – 6 of 6) sorted by relevance

/third_party/python/Include/cpython/
Dframeobject.h28 PyAPI_FUNC(int) PyFrame_FastToLocalsWithError(PyFrameObject *f);
/third_party/python/Objects/
Dframeobject.c28 if (PyFrame_FastToLocalsWithError(f) < 0) in frame_getlocals()
1195 PyFrame_FastToLocalsWithError(PyFrameObject *f) in PyFrame_FastToLocalsWithError() function
1216 res = PyFrame_FastToLocalsWithError(f); in PyFrame_FastToLocals()
/third_party/python/Python/
Dsysmodule.c944 if (PyFrame_FastToLocalsWithError(frame) < 0) { in call_trampoline()
/third_party/python/Doc/whatsnew/
D3.11.rst2465 :c:func:`PyFrame_FastToLocalsWithError` or :c:func:`PyFrame_LocalsToFast`,
/third_party/python/Misc/
DHISTORY3259 - Issue #18408: Add a new PyFrame_FastToLocalsWithError() function to handle
DNEWS3454 - bpo-42197: :c:func:`PyFrame_FastToLocalsWithError` and