async def readuntil(self, separator: bytes = ...) -> bytes: ... async def read(self, n: int = ...) -> bytes: ... async def readexactly(self, n: int) -> bytes: ... def __aiter__(self) -> AsyncIterator[bytes]: ... async def __anext__(self) -> bytes: ... PK