Home
last modified time | relevance | path

Searched refs:_check_methods (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython3/Lib/
D_collections_abc.py74 def _check_methods(C, *methods): function
97 return _check_methods(C, "__hash__")
112 return _check_methods(C, "__await__")
155 return _check_methods(C, '__await__', 'send', 'throw', 'close')
173 return _check_methods(C, "__aiter__")
194 return _check_methods(C, "__anext__", "__aiter__")
241 return _check_methods(C, '__aiter__', '__anext__',
261 return _check_methods(C, "__iter__")
282 return _check_methods(C, '__iter__', '__next__')
314 return _check_methods(C, "__reversed__", "__iter__")
[all …]
Dcontextlib.py33 return _collections_abc._check_methods(C, "__enter__", "__exit__")
55 return _collections_abc._check_methods(C, "__aenter__",
Dos.py29 from _collections_abc import _check_methods
1076 return _check_methods(subclass, '__fspath__')