remove itertools.accumulate from Python 2 stubs (#3135)

This commit is contained in:
Naman
2019-07-19 22:31:32 -07:00
committed by Jelle Zijlstra
parent 4072ad82fb
commit 9379cedfa7

View File

@@ -14,8 +14,6 @@ def cycle(iterable: Iterable[_T]) -> Iterator[_T]: ...
def repeat(object: _T, times: int = ...) -> Iterator[_T]: ...
def accumulate(iterable: Iterable[_T]) -> Iterator[_T]: ...
class chain(Iterator[_T], Generic[_T]):
def __init__(self, *iterables: Iterable[_T]) -> None: ...
def next(self) -> _T: ...