(self, pos: int)
| 142 | return self._trace_log_pos |
| 143 | |
| 144 | def seek(self, pos: int) -> None: |
| 145 | self.make_sure_we_are_executing() |
| 146 | # Safety check to ensure 0 < pos < len(tracelog) |
| 147 | self._trace_log_pos = min(max(0, pos), len(self._trace_log)) |
| 148 | |
| 149 | def peak(self, output: str | bytes) -> bool: |
| 150 | if self.peek_output: |
no test coverage detected