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

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

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

class typing.SupportsFloat An ABC with one abstract method __float__.

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

assertSequenceEqual(first, second, msg=None, seq_type=None) Tests that two sequences are equal. If a seq_type is supplied

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

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

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

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

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

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

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

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

2025-01-10 15:47:30
test.support.temp_umask()
  • References/Python/Python/Development Tools

test.support.temp_umask(umask) A context manager that temporarily sets the process umask.

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

class unittest.mock.Mock(spec=None, side_effect=None, return_value=DEFAULT, wraps=None, name=None, spec_set=None, unsafe=False, **kwargs)

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

assertRaisesRegex(exception, regex, callable, *args, **kwds) assertRaisesRegex(exception, regex, msg=None) Like

2025-01-10 15:47:30