(
reprcrash: ReprFileLocation | None,
)
| 563 | return result |
| 564 | |
| 565 | def serialize_repr_crash( |
| 566 | reprcrash: ReprFileLocation | None, |
| 567 | ) -> dict[str, Any] | None: |
| 568 | if reprcrash is not None: |
| 569 | return dataclasses.asdict(reprcrash) |
| 570 | else: |
| 571 | return None |
| 572 | |
| 573 | def serialize_exception_longrepr(rep: BaseReport) -> dict[str, Any]: |
| 574 | assert rep.longrepr is not None |
no outgoing calls
no test coverage detected