MCPcopy Create free account
hub / github.com/bloomberg/pystack / PyFrame

Class PyFrame

src/pystack/types.py:93–100  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

91
92@dataclass
93class PyFrame:
94 prev: Optional["PyFrame"]
95 next: Optional["PyFrame"]
96 code: PyCodeObject
97 arguments: Dict[str, str]
98 locals: Dict[str, str]
99 is_entry: bool
100 is_shim: bool
101
102
103@dataclass

Calls

no outgoing calls