Home
last modified time | relevance | path

Searched refs:DocTestFinder (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython2/Lib/
Ddoctest.py810 class DocTestFinder: class
1903 finder = DocTestFinder(exclude_empty=exclude_empty)
2066 finder = DocTestFinder(verbose=verbose, recurse=False)
2094 self.testfinder = DocTestFinder()
2396 test_finder = DocTestFinder()
2637 tests = DocTestFinder().find(module)
/external/python/cpython2/Lib/test/
Dtest_zipimport_support.py43 finder = doctest.DocTestFinder(verbose=verbose, recurse=False)
/external/python/cpython2/Doc/library/
Ddoctest.rst945 tests. The *exclude_empty* argument to the newer :class:`DocTestFinder`
1084 Unlike :func:`testmod` and :class:`DocTestFinder`, this function raises
1086 this error by passing a :class:`DocTestFinder` instance as the
1090 >>> finder = doctest.DocTestFinder(exclude_empty=False)
1115 Optional argument *test_finder* is the :class:`DocTestFinder` object (or a
1197 * :class:`DocTestFinder`: Finds all docstrings in a given module, and uses a
1215 |module| --DocTestFinder-> | DocTest | --DocTestRunner-> results
1345 DocTestFinder objects
1349 .. class:: DocTestFinder([verbose][, parser][, recurse][, exclude_empty])
1363 If the optional argument *recurse* is false, then :meth:`DocTestFinder.find`
[all …]
/external/python/cpython2/Doc/whatsnew/
D2.4.rst1354 The new :class:`DocTestFinder` class extracts the tests from a given object's
1365 finder = doctest.DocTestFinder()
/external/python/cpython2/Misc/
DHISTORY261 side effects from one test to the next affect outcomes. ``DocTestFinder``
2634 you want to filter out tests, the new DocTestFinder class can be used