mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-06 12:14:27 +08:00
committed by
Jelle Zijlstra
parent
1fddec3f90
commit
6d8e610d75
@@ -101,6 +101,6 @@ def product(*iterables: Iterable[Any], repeat: int = ...) -> Iterator[Tuple[Any,
|
||||
def permutations(iterable: Iterable[_T],
|
||||
r: Optional[int] = ...) -> Iterator[Tuple[_T, ...]]: ...
|
||||
def combinations(iterable: Iterable[_T],
|
||||
r: int) -> Iterable[Tuple[_T, ...]]: ...
|
||||
r: int) -> Iterator[Tuple[_T, ...]]: ...
|
||||
def combinations_with_replacement(iterable: Iterable[_T],
|
||||
r: int) -> Iterable[Tuple[_T, ...]]: ...
|
||||
r: int) -> Iterator[Tuple[_T, ...]]: ...
|
||||
|
||||
Reference in New Issue
Block a user