Home
last modified time | relevance | path

Searched refs:OutputChecker (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython2/Doc/library/
Ddoctest.rst695 :class:`OutputChecker` or :class:`DocTestRunner` to create new options that are
1205 an :class:`OutputChecker` to verify their output.
1207 * :class:`OutputChecker`: Compares the actual output from a doctest example with
1219 DocTestParser | Example | OutputChecker
1464 :class:`OutputChecker`. This comparison may be customized with a number of
1467 passing a subclass of :class:`OutputChecker` to the constructor.
1477 The optional keyword argument *checker* specifies the :class:`OutputChecker`
1575 OutputChecker objects
1579 .. class:: OutputChecker()
1582 matches the expected output. :class:`OutputChecker` defines two methods:
[all …]
/external/python/cpython2/Lib/
Ddoctest.py1183 self._checker = checker or OutputChecker()
1536 class OutputChecker: class
/external/python/cpython2/Doc/whatsnew/
D2.4.rst1387 :class:`DocTestRunner` uses an instance of the :class:`OutputChecker` class to
1390 a completely new subclass of :class:`OutputChecker`.