A single exception with optional extra details (function arguments, function locals, file location) and possible extra line and sections emitted at the end.
| 1322 | |
| 1323 | @dataclasses.dataclass(eq=False) |
| 1324 | class ReprExceptionInfo(ExceptionRepr): |
| 1325 | """A single exception with optional extra details (function arguments, |
| 1326 | function locals, file location) and possible extra line and sections emitted |
| 1327 | at the end.""" |
| 1328 | |
| 1329 | def toterminal(self, tw: TerminalWriter) -> None: |
| 1330 | self.reprtraceback.toterminal(tw) |
| 1331 | super().toterminal(tw) |
| 1332 | |
| 1333 | |
| 1334 | @dataclasses.dataclass(eq=False) |
no outgoing calls
no test coverage detected