MCPcopy Index your code
hub / github.com/python/cpython / __init__

Method __init__

Lib/doctest.py:2309–2313  ·  view source on GitHub ↗
(self, *args, test_case, test_result, **kwargs)

Source from the content-addressed store, hash-verified

2307class _DocTestCaseRunner(DocTestRunner):
2308
2309 def __init__(self, *args, test_case, test_result, **kwargs):
2310 super().__init__(*args, **kwargs)
2311 self._test_case = test_case
2312 self._test_result = test_result
2313 self._examplenum = 0
2314
2315 def _subTest(self):
2316 subtest = unittest.case._SubTest(self._test_case, str(self._examplenum), {})

Callers

nothing calls this directly

Calls 2

superClass · 0.85
__init__Method · 0.45

Tested by

no test coverage detected