Home
last modified time | relevance | path

Searched refs:test_finder (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Lib/
Ddoctest.py2358 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/
Ddoctest.rst1087 *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