(self)
| 112 | |
| 113 | @property |
| 114 | def frames(self) -> Iterable[PyFrame]: |
| 115 | yield from filter(lambda frame: not frame.is_shim, self.all_frames) |
| 116 | |
| 117 | @property |
| 118 | def first_frame(self) -> Optional[PyFrame]: |
nothing calls this directly
no outgoing calls
no test coverage detected