Home
last modified time | relevance | path

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

/external/python/cpython2/Doc/library/
Ddoctest.rst695 :class:`OutputChecker` or :class:`DocTestRunner` to create new options that are
1165 :class:`DocTestRunner` instance created to run the doctest. If any reporting
1204 * :class:`DocTestRunner`: Executes the examples in a :class:`DocTest`, and uses
1215 |module| --DocTestFinder-> | DocTest | --DocTestRunner-> results
1340 :class:`DocTestRunner`'s :attr:`optionflags`). By default, no options are set.
1454 DocTestRunner objects
1458 .. class:: DocTestRunner([checker][, verbose][, optionflags])
1473 customized by subclassing DocTestRunner, and overriding the methods
1481 The optional keyword argument *verbose* controls the :class:`DocTestRunner`'s
1499 is provided to allow subclasses of :class:`DocTestRunner` to customize their
[all …]
/external/python/cpython2/Lib/
Ddoctest.py1106 class DocTestRunner: class
1707 class DebugRunner(DocTestRunner):
1799 r = DocTestRunner.run(self, test, compileflags, out, False)
1908 runner = DocTestRunner(verbose=verbose, optionflags=optionflags)
2029 runner = DocTestRunner(verbose=verbose, optionflags=optionflags)
2067 runner = DocTestRunner(verbose=verbose, optionflags=optionflags)
2095 self.testrunner = DocTestRunner(verbose=verbose,
2215 runner = DocTestRunner(optionflags=optionflags,
/external/python/cpython2/Lib/test/
Dtest_zipimport_support.py44 runner = doctest.DocTestRunner(verbose=verbose)
/external/python/cpython2/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
/external/python/cpython2/Misc/
DHISTORY2631 new DocTestRunner class is a saner foundation if you want to do it by
2636 any computable criteria before passing it to a DocTestRunner instance.