doctest.DocTestRunner

class doctest.DocTestRunner(checker=None, verbose=None, optionflags=0) A processing class used to execute and verify the interactive examples in a DocTest. The comparison between expected outputs and actual outputs is done by an OutputChecker. This comparison may be customized with a number of option flags; see section Option Flags for more information. If the option flags are insufficient, then the comparison may also be customized by passing a subclass of OutputChecker to the constructor.

sysconfig.get_makefile_filename()

sysconfig.get_makefile_filename() Return the path of Makefile.

datetime.timedelta.min

timedelta.min The most negative timedelta object, timedelta(-999999999).

str.index()

str.index(sub[, start[, end]]) Like find(), but raise ValueError when the substring is not found.

operator.__mod__()

operator.__mod__(a, b) Return a % b.

pickle.PickleError

exception pickle.PickleError Common base class for the other pickling exceptions. It inherits Exception.

tempfile.gettempdirb()

tempfile.gettempdirb() Same as gettempdir() but the return value is in bytes. New in version 3.5.

doctest.DocTestRunner.summarize()

summarize(verbose=None) Print a summary of all the test cases that have been run by this DocTestRunner, and return a named tuple TestResults(failed, attempted). The optional verbose argument controls how detailed the summary is. If the verbosity is not specified, then the DocTestRunner‘s verbosity is used.

curses.panel.Panel.hide()

Panel.hide() Hide the panel. This does not delete the object, it just makes the window on screen invisible.

hash()

hash(object) Return the hash value of the object (if it has one). Hash values are integers. They are used to quickly compare dictionary keys during a dictionary lookup. Numeric values that compare equal have the same hash value (even if they are of different types, as is the case for 1 and 1.0). Note For object’s with custom __hash__() methods, note that hash() truncates the return value based on the bit width of the host machine. See __hash__() for details.