unittest.TestResult.addSuccess()

addSuccess(test) Called when the test case test succeeds. The default implementation

2016-10-07 17:46:34
test.support.run_with_locale()

@test.support.run_with_locale(catstr, *locales) A decorator for running a function in a different locale, correctly resetting

2016-10-07 17:44:25
test.support.TestFailed

exception test.support.TestFailed Exception to be raised when a test fails. This is deprecated in favor of

2016-10-07 17:44:27
unittest.TestCase.assertGreater()

assertGreater(first, second, msg=None) assertGreaterEqual(first, second, msg=None) assertLess(first, second

2016-10-07 17:46:19
unittest.TestCase.tearDownClass()

tearDownClass() A class method called after tests in an individual class have run. tearDownClass is called with

2016-10-07 17:46:29
unittest.TestCase.countTestCases()

countTestCases() Return the number of tests represented by this test object. For TestCase instances, this will

2016-10-07 17:46:25
unittest.skip()

@unittest.skip(reason) Unconditionally skip the decorated test. reason should describe why the test is being skipped

2016-10-07 17:46:15
typing.Iterator

class typing.Iterator(Iterable[T_co]) A generic version of the

2016-10-07 17:45:56
typing.io

class typing.io Wrapper namespace for I/O stream types. This defines the generic type IO[AnyStr]

2016-10-07 17:45:55
doctest.DocTestRunner.report_failure()

report_failure(out, test, example, got) Report that the given example failed. This method is provided to allow subclasses of

2016-10-07 17:32:10