MCPcopy Index your code
hub / github.com/RustPython/RustPython / __init__

Method __init__

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

Source from the content-addressed store, hash-verified

2280class DocTestCase(unittest.TestCase):
2281
2282 def __init__(self, test, optionflags=0, setUp=None, tearDown=None,
2283 checker=None):
2284
2285 unittest.TestCase.__init__(self)
2286 self._dt_optionflags = optionflags
2287 self._dt_checker = checker
2288 self._dt_test = test
2289 self._dt_setUp = setUp
2290 self._dt_tearDown = tearDown
2291
2292 def setUp(self):
2293 test = self._dt_test

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected