(self, tw: TerminalWriter)
| 163 | self.reprlocation_lines = reprlocation_lines |
| 164 | |
| 165 | def toterminal(self, tw: TerminalWriter) -> None: |
| 166 | for reprlocation, lines in self.reprlocation_lines: |
| 167 | for line in lines: |
| 168 | tw.line(line) |
| 169 | reprlocation.toterminal(tw) |
| 170 | |
| 171 | |
| 172 | class MultipleDoctestFailures(Exception): |