Skip to main content

Module frame

Module frame 

Source

Structs§

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.

Enums§

ExecutionResult

Type Aliases§

FrameRef