This outputs the traceback and should be overridden for anything fancy.
(self, lines: Iterable[str])
| 199 | self.writetb(l) |
| 200 | |
| 201 | def writetb(self, lines: Iterable[str]) -> None: |
| 202 | """This outputs the traceback and should be overridden for anything |
| 203 | fancy.""" |
| 204 | for line in lines: |
| 205 | self.write(line) |
| 206 | |
| 207 | |
| 208 | class MatchesIterator: |
no test coverage detected