(self)
| 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: |
nothing calls this directly
no outgoing calls
no test coverage detected