(self, out, test, example, got)
| 653 | self, out, test, example, exc_info) |
| 654 | |
| 655 | def report_failure(self, out, test, example, got): |
| 656 | self._report_item_name(out) |
| 657 | return doctest.DocTestRunner.report_failure(self, out, test, |
| 658 | example, got) |
| 659 | |
| 660 | class Checker(doctest.OutputChecker): |
| 661 | """ |
nothing calls this directly
no test coverage detected