Skip to main contentModule frame
Source - Frame
- Python-visible frame object. Currently always wraps an
InterpreterFrame.
Analogous to CPython’s PyFrameObject. - FrameLocals
- Lazy locals dict for frames. For NEWLOCALS frames, the dict is
only allocated on first access (most function frames never need it).
- InterpreterFrame
- Lightweight execution frame. Not a PyObject.
Analogous to CPython’s
_PyInterpreterFrame. - LocalsPlus
- Unified storage for local variables and evaluation stack.
- ExecutionResult
- FrameRef