typing.Any
  • References/Python/Python/Development Tools

class typing.Any Special type indicating an unconstrained type. Any object

2025-01-10 15:47:30
doctest.DocTestParser.parse()
  • References/Python/Python/Development Tools

parse(string, name='') Divide the given string into examples and intervening text, and return them as a list of alternating

2025-01-10 15:47:30
unittest.TestLoader.errors
  • References/Python/Python/Development Tools

errors A list of the non-fatal errors encountered while loading tests. Not reset by the loader at any point. Fatal errors are

2025-01-10 15:47:30
doctest.UnexpectedException
  • References/Python/Python/Development Tools

exception doctest.UnexpectedException(test, example, exc_info) An exception raised by DocTestRunner to signal that

2025-01-10 15:47:30
doctest.DocTestRunner.report_unexpected_exception()
  • References/Python/Python/Development Tools

report_unexpected_exception(out, test, example, exc_info) Report that the given example raised an unexpected exception. This

2025-01-10 15:47:30
unittest.TestCase.assertNotRegex()
  • References/Python/Python/Development Tools

assertNotRegex(text, regex, msg=None) Test that a regex search matches (or does not match) text. In case of

2025-01-10 15:47:30
unittest.TestCase.tearDown()
  • References/Python/Python/Development Tools

tearDown() Method called immediately after the test method has been called and the result recorded. This is called even if the

2025-01-10 15:47:30
doctest.UnexpectedException.example
  • References/Python/Python/Development Tools

UnexpectedException.example The Example that failed.

2025-01-10 15:47:30
unittest.mock.create_autospec()
  • References/Python/Python/Development Tools

unittest.mock.create_autospec(spec, spec_set=False, instance=False, **kwargs) Create a mock object using another object as a

2025-01-10 15:47:30
unittest.mock.call.call_list()
  • References/Python/Python/Development Tools

call.call_list() For a call object that represents multiple calls, call_list() returns a list of all the intermediate

2025-01-10 15:47:30