Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/
D_collections_abc.py72 def _check_methods(C, *methods): function
95 return _check_methods(C, "__hash__")
110 return _check_methods(C, "__await__")
151 return _check_methods(C, '__await__', 'send', 'throw', 'close')
169 return _check_methods(C, "__aiter__")
188 return _check_methods(C, "__anext__", "__aiter__")
235 return _check_methods(C, '__aiter__', '__anext__',
255 return _check_methods(C, "__iter__")
274 return _check_methods(C, '__iter__', '__next__')
305 return _check_methods(C, "__reversed__", "__iter__")
[all …]
Dcontextlib.py30 return _collections_abc._check_methods(C, "__enter__", "__exit__")
50 return _collections_abc._check_methods(C, "__aenter__",