diff --git a/stdlib/2/itertools.pyi b/stdlib/2/itertools.pyi index 284047763..9d60526c5 100644 --- a/stdlib/2/itertools.pyi +++ b/stdlib/2/itertools.pyi @@ -128,6 +128,8 @@ def product(iter1: Iterable[Any], iter5: Iterable[Any], iter6: Iterable[Any], iter7: Iterable[Any], *iterables: Iterable) -> Iterator[Tuple]: ... +@overload +def product(*iter: Iterable[_T], repeat: int) -> Iterator[Tuple[_T, ...]]: ... def permutations(iterable: Iterable[_T], r: int = ...) -> Iterator[Sequence[_T]]: ...