From 417593b157c75261a4faf7cfa37deb98cc202714 Mon Sep 17 00:00:00 2001 From: Tesla2000 Date: Sat, 14 Feb 2026 12:14:00 +0100 Subject: [PATCH] Changed islice overload signature to match itertools --- asyncstdlib/itertools.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/asyncstdlib/itertools.pyi b/asyncstdlib/itertools.pyi index e561d57..d63e0e7 100644 --- a/asyncstdlib/itertools.pyi +++ b/asyncstdlib/itertools.pyi @@ -80,7 +80,7 @@ def filterfalse( predicate: Callable[[T], Any] | None, iterable: AnyIterable[T] ) -> AsyncIterator[T]: ... @overload -def islice(iterable: AnyIterable[T], start: int | None, /) -> AsyncIterator[T]: ... +def islice(iterable: AnyIterable[T], stop: int | None, /) -> AsyncIterator[T]: ... @overload def islice( iterable: AnyIterable[T],