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

Method __init__

Lib/doctest.py:2360–2368  ·  view source on GitHub ↗
(self, test, optionflags=0, setUp=None, tearDown=None,
                 checker=None)

Source from the content-addressed store, hash-verified

2358class DocTestCase(unittest.TestCase):
2359
2360 def __init__(self, test, optionflags=0, setUp=None, tearDown=None,
2361 checker=None):
2362
2363 super().__init__()
2364 self._dt_optionflags = optionflags
2365 self._dt_checker = checker
2366 self._dt_test = test
2367 self._dt_setUp = setUp
2368 self._dt_tearDown = tearDown
2369
2370 def setUp(self):
2371 test = self._dt_test

Callers

nothing calls this directly

Calls 2

superClass · 0.85
__init__Method · 0.45

Tested by

no test coverage detected