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

Method all_frames

src/pystack/types.py:122–126  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

120
121 @property
122 def all_frames(self) -> Iterable[PyFrame]:
123 current_frame = self.frame
124 while current_frame is not None:
125 yield current_frame
126 current_frame = current_frame.next
127
128 @property
129 def status(self) -> str:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected