(cls, C)
| 127 | |
| 128 | @classmethod |
| 129 | def __subclasshook__(cls, C): |
| 130 | if cls is Hashable: |
| 131 | return _check_methods(C, "__hash__") |
| 132 | return NotImplemented |
| 133 | |
| 134 | |
| 135 | class Awaitable(metaclass=ABCMeta): |
nothing calls this directly
no test coverage detected