Compatibility function until we drop 3.9 support: https://docs.python.org/3/library/functions.html#anext.
(cls: Any)
| 140 | else: |
| 141 | |
| 142 | async def anext(cls: Any) -> Any: |
| 143 | """Compatibility function until we drop 3.9 support: https://docs.python.org/3/library/functions.html#anext.""" |
| 144 | return await cls.__anext__() |
| 145 | |
| 146 | def aiter(cls: Any) -> Any: |
| 147 | """Compatibility function until we drop 3.9 support: https://docs.python.org/3/library/functions.html#anext.""" |