Method
__init__
(self, item_name, checker=None, verbose=None, optionflags=0)
Source from the content-addressed store, hash-verified
| 628 | DIVIDER = "\n" |
| 629 | |
| 630 | def __init__(self, item_name, checker=None, verbose=None, optionflags=0): |
| 631 | self._item_name = item_name |
| 632 | doctest.DocTestRunner.__init__(self, checker=checker, verbose=verbose, |
| 633 | optionflags=optionflags) |
| 634 | |
| 635 | def _report_item_name(self, out, new_line=False): |
| 636 | if self._item_name is not None: |
Callers
nothing calls this directly
Tested by
no test coverage detected