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
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
unittest.TestCase.assertWarnsRegex()

assertWarnsRegex(warning, regex, callable, *args, **kwds) assertWarnsRegex(warning, regex, msg=None) Like

2016-10-07 17:46:25
typing.get_type_hints()

typing.get_type_hints(obj) Return type hints for a function or method object. This is often

2016-10-07 17:45:55
typing.Generic

class typing.Generic Abstract base class for generic types. A generic type is typically declared

2016-10-07 17:45:55
unittest.mock.NonCallableMagicMock

class unittest.mock.NonCallableMagicMock(*args, **kw) A non-callable version of MagicMock. The

2016-10-07 17:46:12
doctest.register_optionflag()

doctest.register_optionflag(name) Create a new option flag with a given name, and return the new flag’s integer value.

2016-10-07 17:32:13
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.Mock.mock_add_spec()

mock_add_spec(spec, spec_set=False) Add a spec to a mock. spec can either be an object or a list of strings. Only attributes

2016-10-07 17:46:10
unittest.mock.Mock.

_get_child_mock(**kw) Create the child mocks for attributes and return value. By default child mocks will be the same type as

2016-10-07 17:46:11