From 9379cedfa787a2ee608ec713be414a464f9cb771 Mon Sep 17 00:00:00 2001 From: Naman <1977419+metalogical@users.noreply.github.com> Date: Fri, 19 Jul 2019 22:31:32 -0700 Subject: [PATCH] remove itertools.accumulate from Python 2 stubs (#3135) --- stdlib/2/itertools.pyi | 2 -- 1 file changed, 2 deletions(-) diff --git a/stdlib/2/itertools.pyi b/stdlib/2/itertools.pyi index 1c8522c87..1d5b4ee84 100644 --- a/stdlib/2/itertools.pyi +++ b/stdlib/2/itertools.pyi @@ -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: ...