We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8cad322 commit 1d9da4eCopy full SHA for 1d9da4e
stdlib/3/io.pyi
@@ -34,12 +34,14 @@ class IOBase:
34
def flush(self) -> None: ...
35
def isatty(self) -> bool: ...
36
def readable(self) -> bool: ...
37
+ read: Callable[..., Any]
38
def readlines(self, __hint: int = ...) -> List[bytes]: ...
39
def seek(self, __offset: int, __whence: int = ...) -> int: ...
40
def seekable(self) -> bool: ...
41
def tell(self) -> int: ...
42
def truncate(self, __size: Optional[int] = ...) -> int: ...
43
def writable(self) -> bool: ...
44
+ write: Callable[..., Any]
45
def writelines(self, __lines: Iterable[ReadableBuffer]) -> None: ...
46
def readline(self, __size: Optional[int] = ...) -> bytes: ...
47
def __del__(self) -> None: ...
0 commit comments