Searched refs:_check_methods (Results 1 – 3 of 3) sorted by relevance
/external/python/cpython3/Lib/ |
D | _collections_abc.py | 74 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 …]
|
D | contextlib.py | 33 return _collections_abc._check_methods(C, "__enter__", "__exit__") 55 return _collections_abc._check_methods(C, "__aenter__",
|
D | os.py | 29 from _collections_abc import _check_methods 1076 return _check_methods(subclass, '__fspath__')
|