Searched refs:test_finder (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython3/Lib/ |
D | doctest.py | 2331 def DocTestSuite(module=None, globs=None, extraglobs=None, test_finder=None, argument 2368 if test_finder is None: 2369 test_finder = DocTestFinder() 2372 tests = test_finder.find(module, globs=globs, extraglobs=extraglobs)
|
/external/python/cpython2/Lib/ |
D | doctest.py | 2358 def DocTestSuite(module=None, globs=None, extraglobs=None, test_finder=None, argument 2395 if test_finder is None: 2396 test_finder = DocTestFinder() 2399 tests = test_finder.find(module, globs=globs, extraglobs=extraglobs)
|
/external/python/cpython2/Doc/library/ |
D | doctest.rst | 1087 *test_finder* argument with its *exclude_empty* keyword argument set 1091 >>> suite = doctest.DocTestSuite(test_finder=finder) 1094 .. function:: DocTestSuite([module][, globs][, extraglobs][, test_finder][, setUp][, tearDown][, ch… 1115 Optional argument *test_finder* is the :class:`DocTestFinder` object (or a 1124 The parameters *globs*, *extraglobs*, *test_finder*, *setUp*, *tearDown*, and
|
/external/python/cpython3/Doc/library/ |
D | doctest.rst | 1052 .. function:: DocTestSuite(module=None, globs=None, extraglobs=None, test_finder=None, setUp=None, … 1073 Optional argument *test_finder* is the :class:`DocTestFinder` object (or a
|