builtins: change aiter argument name (#6412)

This commit is contained in:
Shantanu
2021-11-28 01:41:49 -08:00
committed by GitHub
parent 95e22ffa5e
commit eb16dcc2c1
2 changed files with 1 additions and 2 deletions

View File

@@ -999,7 +999,7 @@ class _PathLike(Protocol[_AnyStr_co]):
def __fspath__(self) -> _AnyStr_co: ...
if sys.version_info >= (3, 10):
def aiter(__iterable: AsyncIterable[_T]) -> AsyncIterator[_T]: ...
def aiter(__async_iterable: AsyncIterable[_T]) -> AsyncIterator[_T]: ...
@overload
async def anext(__i: SupportsAnext[_T]) -> _T: ...
@overload