diff --git a/stdlib/3/typing.pyi b/stdlib/3/typing.pyi index 33062414191e..7e2151eeeaf5 100644 --- a/stdlib/3/typing.pyi +++ b/stdlib/3/typing.pyi @@ -515,13 +515,6 @@ class BinaryIO(IO[bytes]): # TODO readinto # TODO read1? # TODO peek? - @overload - @abstractmethod - def write(self, s: bytearray) -> int: ... - @overload - @abstractmethod - def write(self, s: bytes) -> int: ... - @abstractmethod def __enter__(self) -> BinaryIO: ...