unittest.TestCase.maxDiff

maxDiff This attribute controls the maximum length of diffs output by assert methods that report diffs on failure. It defaults

2016-10-07 17:46:27
typing.MappingView

class typing.MappingView(Sized, Iterable[T_co]) A generic version of

2016-10-07 17:45:57
typing.Mapping

class typing.Mapping(Sized, Iterable[KT], Container[KT], Generic[VT_co]) A generic version of

2016-10-07 17:45:56
unittest.installHandler()

unittest.installHandler() Install the control-c handler. When a signal.SIGINT is received (usually in response

2016-10-07 17:46:05
unittest.mock.sentinel

unittest.mock.sentinel The sentinel object provides a convenient way of providing unique objects for your tests

2016-10-07 17:46:14
typing.Union

class typing.Union Union type; Union[X, Y] means either X or Y. To define a union

2016-10-07 17:46:00
doctest.DocTest.docstring

docstring The string that the test was extracted from, or ‘None’ if the string is unavailable, or if the test was not extracted

2016-10-07 17:32:06
doctest.DocTestParser.get_doctest()

get_doctest(string, globs, name, filename, lineno) Extract all doctest examples from the given string, and collect them into

2016-10-07 17:32:09
unittest.TestCase.run()

run(result=None) Run the test, collecting the result into the TestResult object passed as result. If result

2016-10-07 17:46:28
test.support.import_fresh_module()

test.support.import_fresh_module(name, fresh=(), blocked=(), deprecated=False) This function imports and returns a fresh copy

2016-10-07 17:44:24