Home
last modified time | relevance | path

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

/external/python/cpython3/Include/cpython/
Dframeobject.h75 PyAPI_FUNC(int) PyFrame_FastToLocalsWithError(PyFrameObject *f);
/external/python/cpython3/Objects/
Dframeobject.c28 if (PyFrame_FastToLocalsWithError(f) < 0) in frame_getlocals()
1064 PyFrame_FastToLocalsWithError(PyFrameObject *f) in PyFrame_FastToLocalsWithError() function
1130 res = PyFrame_FastToLocalsWithError(f); in PyFrame_FastToLocals()
/external/python/cpython3/Python/
Dsysmodule.c932 if (PyFrame_FastToLocalsWithError(frame) < 0) { in call_trampoline()
Dceval.c3109 if (PyFrame_FastToLocalsWithError(f) < 0) { in _PyEval_EvalFrameDefault()
4919 if (PyFrame_FastToLocalsWithError(current_frame) < 0) { in PyEval_GetLocals()
/external/python/cpython3/Misc/
DHISTORY3259 - Issue #18408: Add a new PyFrame_FastToLocalsWithError() function to handle