(self, msg: str)
| 1738 | self._log_output = [] |
| 1739 | |
| 1740 | def _fail(self, msg: str) -> None: |
| 1741 | __tracebackhide__ = True |
| 1742 | log_text = self._log_text |
| 1743 | self._log_output = [] |
| 1744 | fail(log_text) |
| 1745 | |
| 1746 | def str(self) -> str: |
| 1747 | """Return the entire original text.""" |
no test coverage detected