mirror of
https://github.com/pocketpy/pocketpy
synced 2025-12-13 13:40:16 +00:00
Delete io.pyi
This commit is contained in:
parent
1e17b49403
commit
480eb6cf36
@ -1,17 +0,0 @@
|
||||
|
||||
class FileIO:
|
||||
def __new__(cls, file: str, mode: str) -> "FileIO": ...
|
||||
|
||||
def __enter__(self) -> "FileIO": ...
|
||||
def __exit__(self) -> None: ...
|
||||
|
||||
def read(self, size: int | None = None) -> bytes: ...
|
||||
def write(self, data: bytes) -> int: ...
|
||||
def close(self) -> None: ...
|
||||
def tell(self) -> int: ...
|
||||
def seek(self, offset: int, whence: int) -> None: ...
|
||||
def flush(self) -> None: ...
|
||||
|
||||
SEEK_SET: int
|
||||
SEEK_CUR: int
|
||||
SEEK_END: int
|
||||
Loading…
x
Reference in New Issue
Block a user