Home | History | Annotate | Download | only in test

Lines Matching refs:Sized

13 from collections import Sized, Container, Callable
378 self.assertNotIsInstance(x, Sized)
379 self.assertFalse(issubclass(type(x), Sized), repr(type(x)))
385 self.assertIsInstance(x, Sized)
386 self.assertTrue(issubclass(type(x), Sized
387 self.validate_abstract_methods(Sized, '__len__')
388 self.validate_isinstance(Sized, '__len__')
429 for B in Hashable, Iterable, Iterator, Sized, Container, Callable:
436 for B in Hashable, Iterable, Iterator, Sized, Container, Callable: