Method
__init__
(
self,
checker: doctest.OutputChecker | None = None,
verbose: bool | None = None,
optionflags: int = 0,
continue_on_failure: bool = True,
)
Source from the content-addressed store, hash-verified
| 186 | """ |
| 187 | |
| 188 | def __init__( |
| 189 | self, |
| 190 | checker: doctest.OutputChecker | None = None, |
| 191 | verbose: bool | None = None, |
| 192 | optionflags: int = 0, |
| 193 | continue_on_failure: bool = True, |
| 194 | ) -> None: |
| 195 | super().__init__(checker=checker, verbose=verbose, optionflags=optionflags) |
| 196 | self.continue_on_failure = continue_on_failure |
| 197 | |
| 198 | def report_failure( |
| 199 | self, |
Callers
nothing calls this directly
Tested by
no test coverage detected