pydoc
  • References/Python/Python/Development Tools

Source code: Lib/pydoc.py

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

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

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

class unittest.TestSuite(tests=()) This class represents an aggregation of individual tests cases and test suites. The class

2025-01-10 15:47:30
typing.Dict
  • References/Python/Python/Development Tools

class typing.Dict(dict, MutableMapping[KT, VT]) A generic version of

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

assertIs(first, second, msg=None) assertIsNot(first, second, msg=None) Test that first and second

2025-01-10 15:47:30
typing.SupportsRound
  • References/Python/Python/Development Tools

class typing.SupportsRound An ABC with one abstract method __round__ that is covariant in its return type.

2025-01-10 15:47:30
typing.Optional
  • References/Python/Python/Development Tools

class typing.Optional Optional type. Optional[X] is equivalent to Union[X

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

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

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

run(test) This method is the main public interface to the TextTestRunner. This method takes a TestSuite

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

failfast If set to true stop() will be called on the first failure or error, halting the test run.

2025-01-10 15:47:30