diff --git a/test-data/unit/lib-stub/typing.pyi b/test-data/unit/lib-stub/typing.pyi index 274f3da76164..02412c77a7b8 100644 --- a/test-data/unit/lib-stub/typing.pyi +++ b/test-data/unit/lib-stub/typing.pyi @@ -50,15 +50,6 @@ class Iterator(Iterable[T], Generic[T]): def __next__(self) -> T: pass class Generator(Iterator[T], Generic[T, U, V]): - @abstractmethod - def send(self, value: U) -> T: pass - - @abstractmethod - def throw(self, typ: Any, val: Any = None, tb: Any = None) -> None: pass - - @abstractmethod - def close(self) -> None: pass - @abstractmethod def __iter__(self) -> 'Generator[T, U, V]': pass