Home
last modified time | relevance | path

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

/third_party/python/Doc/library/
Ddoctest.rst688 :class:`OutputChecker` or :class:`DocTestRunner` to create new options that are
1125 so augmented are passed to the :class:`DocTestRunner` instance created to
1163 * :class:`DocTestRunner`: Executes the examples in a :class:`DocTest`, and uses
1174 |module| --DocTestFinder-> | DocTest | --DocTestRunner-> results
1297 :class:`DocTestRunner`'s :attr:`optionflags`). By default, no options are set.
1408 DocTestRunner objects
1412 .. class:: DocTestRunner(checker=None, verbose=None, optionflags=0)
1427 customized by subclassing DocTestRunner, and overriding the methods
1435 The optional keyword argument *verbose* controls the :class:`DocTestRunner`'s
1452 is provided to allow subclasses of :class:`DocTestRunner` to customize their
[all …]
/third_party/python/Lib/
Ddoctest.py1138 class DocTestRunner: class
1762 class DebugRunner(DocTestRunner):
1854 r = DocTestRunner.run(self, test, compileflags, out, False)
1963 runner = DocTestRunner(verbose=verbose, optionflags=optionflags)
2085 runner = DocTestRunner(verbose=verbose, optionflags=optionflags)
2120 runner = DocTestRunner(verbose=verbose, optionflags=optionflags)
2203 runner = DocTestRunner(optionflags=optionflags,
/third_party/python/Lib/test/
Dtest_zipimport_support.py38 runner = doctest.DocTestRunner(verbose=verbose)
/third_party/python/Doc/whatsnew/
D2.4.rst1370 The new :class:`DocTestRunner` class then runs individual tests and can produce
1373 runner = doctest.DocTestRunner()
1387 :class:`DocTestRunner` uses an instance of the :class:`OutputChecker` class to
/third_party/python/Misc/
DHISTORY20015 new DocTestRunner class is a saner foundation if you want to do it by
20020 any computable criteria before passing it to a DocTestRunner instance.