(self, msg: str)
| 1793 | self._log_output = [] |
| 1794 | |
| 1795 | def _fail(self, msg: str) -> None: |
| 1796 | __tracebackhide__ = True |
| 1797 | log_text = self._log_text |
| 1798 | self._log_output = [] |
| 1799 | fail(log_text) |
| 1800 | |
| 1801 | def str(self) -> str: |
| 1802 | """Return the entire original text.""" |
no outgoing calls
no test coverage detected