Searched refs:optionflags (Results 1 – 10 of 10) sorted by relevance
/third_party/python/Lib/ |
D | doctest.py | 1198 def __init__(self, checker=None, verbose=None, optionflags=0): argument 1219 self.optionflags = optionflags 1220 self.original_optionflags = optionflags 1260 self._checker.output_difference(example, got, self.optionflags)) 1304 original_optionflags = self.optionflags 1315 quiet = (self.optionflags & REPORT_ONLY_FIRST_FAILURE and 1319 self.optionflags = original_optionflags 1323 self.optionflags |= optionflag 1325 self.optionflags &= ~optionflag 1328 if self.optionflags & SKIP: [all …]
|
/third_party/python/Doc/library/ |
D | doctest.rst | 841 …=True, name=None, package=None, globs=None, verbose=None, report=True, optionflags=0, extraglobs=N… 894 Optional argument *optionflags* (default value 0) takes the 911 .. function:: testmod(m=None, name=None, globs=None, verbose=None, report=True, optionflags=0, extr… 939 Optional arguments *extraglobs*, *verbose*, *report*, *optionflags*, 944 …:: run_docstring_examples(f, globs, verbose=False, name="NoName", compileflags=None, optionflags=0) 961 Optional argument *optionflags* works as for function :func:`testfile` above. 987 …le_relative=True, package=None, setUp=None, tearDown=None, globs=None, optionflags=0, parser=DocTe… 1038 Optional argument *optionflags* specifies the default doctest options for the 1078 Optional arguments *setUp*, *tearDown*, and *optionflags* are the same as for 1297 :class:`DocTestRunner`'s :attr:`optionflags`). By default, no options are set. [all …]
|
D | test.rst | 473 .. function:: run_doctest(module, verbosity=None, optionflags=0) 480 ``None``. *optionflags* is passed as ``optionflags`` to
|
/third_party/python/Lib/test/ |
D | test_doctest.py | 1198 def optionflags(): r""" member in test_DocTestRunner
|
D | test_zipimport_support.py | 164 test_zipped_doctest.test_DocTestRunner.optionflags,
|
D | test_statistics.py | 698 failed, tried = doctest.testmod(statistics, optionflags=doctest.ELLIPSIS)
|
D | test_decimal.py | 5774 run_doctest(C, verbose, optionflags=IGNORE_EXCEPTION_DETAIL)
|
/third_party/python/Lib/test/support/ |
D | __init__.py | 1134 def run_doctest(module, verbosity=None, optionflags=0): argument 1149 f, t = doctest.testmod(module, verbose=verbosity, optionflags=optionflags)
|
/third_party/skia/third_party/externals/brotli/research/ |
D | brotlidump.py | 2360 doctest.testmod(optionflags=doctest.REPORT_NDIFF
|
/third_party/python/Misc/ |
D | HISTORY | 21442 constant DONT_ACCEPT_TRUE_FOR_1 to the new optionflags optional
|