Lines Matching defs:abc
1 import abc
4 import collections.abc
577 class Abstract(abc.ABCMeta):
579 @abc.abstractmethod
794 self.assertEqual(self.reduce(add, ['a', 'b', 'c'], ''), 'abc')
944 self.assertNotIsInstance(k, collections.abc.Hashable)
1540 return 'abc'[i]
1975 c = collections.abc
2028 c = collections.abc
2122 c = collections.abc
2163 c = collections.abc
2195 (("Ambiguous dispatch: <class 'collections.abc.Container'> "
2196 "or <class 'collections.abc.Iterable'>"),
2197 ("Ambiguous dispatch: <class 'collections.abc.Iterable'> "
2198 "or <class 'collections.abc.Container'>")),
2227 (("Ambiguous dispatch: <class 'collections.abc.Container'> "
2228 "or <class 'collections.abc.Sized'>"),
2229 ("Ambiguous dispatch: <class 'collections.abc.Sized'> "
2230 "or <class 'collections.abc.Container'>")),
2267 (("Ambiguous dispatch: <class 'collections.abc.Container'> "
2268 "or <class 'collections.abc.Sized'>"),
2269 ("Ambiguous dispatch: <class 'collections.abc.Sized'> "
2270 "or <class 'collections.abc.Container'>")),
2311 c = collections.abc
2397 def _(arg: collections.abc.Mapping):
2400 def _(arg: "collections.abc.Sequence"):
2511 class Abstract(metaclass=abc.ABCMeta):
2514 @abc.abstractmethod