Skip to content
Merged
6 changes: 5 additions & 1 deletion stdlib/itertools.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -326,6 +326,10 @@ if sys.version_info >= (3, 10):

if sys.version_info >= (3, 12):
class batched(Iterator[tuple[_T_co, ...]], Generic[_T_co]):
def __new__(cls, iterable: Iterable[_T_co], n: int) -> Self: ...
if sys.version_info >= (3, 13):
def __new__(cls, iterable: Iterable[_T_co], n: int, *, strict: bool = False) -> Self: ...
else:
def __new__(cls, iterable: Iterable[_T_co], n: int) -> Self: ...

def __iter__(self) -> Self: ...
def __next__(self) -> tuple[_T_co, ...]: ...