Searched refs:PyFrame_FastToLocalsWithError (Results 1 – 6 of 6) sorted by relevance
28 PyAPI_FUNC(int) PyFrame_FastToLocalsWithError(PyFrameObject *f);
28 if (PyFrame_FastToLocalsWithError(f) < 0) in frame_getlocals()1195 PyFrame_FastToLocalsWithError(PyFrameObject *f) in PyFrame_FastToLocalsWithError() function1216 res = PyFrame_FastToLocalsWithError(f); in PyFrame_FastToLocals()
944 if (PyFrame_FastToLocalsWithError(frame) < 0) { in call_trampoline()
2465 :c:func:`PyFrame_FastToLocalsWithError` or :c:func:`PyFrame_LocalsToFast`,
3259 - Issue #18408: Add a new PyFrame_FastToLocalsWithError() function to handle
3454 - bpo-42197: :c:func:`PyFrame_FastToLocalsWithError` and