Home | History | Annotate | Download | only in python2.7

Lines Matching refs:DocTestRunner

74     'DocTestRunner',
112 # - DocTestRunner: runs DocTest cases, and accumulates statistics.
118 # |object| --DocTestFinder-> | DocTest | --DocTestRunner-> |results|
434 DocTestRunner's optionflags). By default, no options are set.
1080 class DocTestRunner:
1088 >>> runner = DocTestRunner(verbose=False)
1132 can be also customized by subclassing DocTestRunner, and
1234 with one of the `DocTestRunner.report_*` methods, using the
1396 `DocTestRunner.check_output`, and the results are formatted by
1397 the `DocTestRunner.report_*` methods.
1444 this DocTestRunner, and return a tuple `(f, t)`, where `f` is
1450 DocTestRunner's verbosity is used.
1504 #print "*** DocTestRunner.merge: '" + name + "' in both" \
1682 class DebugRunner(DocTestRunner):
1774 r = DocTestRunner.run(self, test, compileflags, out, False)
1790 # For backward compatibility, a global instance of a DocTestRunner
1883 runner = DocTestRunner(verbose=verbose, optionflags=optionflags)
2004 runner = DocTestRunner(verbose=verbose, optionflags=optionflags)
2042 runner = DocTestRunner(verbose=verbose, optionflags=optionflags)
2056 "use class doctest.DocTestRunner instead",
2070 self.testrunner = DocTestRunner(verbose=verbose,
2190 runner = DocTestRunner(optionflags=optionflags,