(cls, C)
| 224 | |
| 225 | @classmethod |
| 226 | def __subclasshook__(cls, C): |
| 227 | if cls is AsyncIterator: |
| 228 | return _check_methods(C, "__anext__", "__aiter__") |
| 229 | return NotImplemented |
| 230 | |
| 231 | |
| 232 | class AsyncGenerator(AsyncIterator): |
nothing calls this directly
no test coverage detected