mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-06 20:24:30 +08:00
* make io classes inherit from typing IO classes This makes these classes usable if type annotations are given as "IO" or "TextIO". In the future, we'll then be able to move open() to return a concrete class instead (#3951). * open: introduce concrete return types Fixes #3951. We use the values of the "mode" and "buffering" arguments to figure out the concrete type open() will return at runtime. (Compare the CPython code in https://github.com/python/cpython/blob/master/Modules/_io/_iomodule.c#L231.)
213 lines
8.1 KiB
Python
213 lines
8.1 KiB
Python
from typing import (
|
|
List, BinaryIO, TextIO, Iterator, Union, Optional, Callable, Tuple, Type, Any, IO, Iterable, TypeVar
|
|
)
|
|
import builtins
|
|
import codecs
|
|
import sys
|
|
from mmap import mmap
|
|
from types import TracebackType
|
|
|
|
if sys.version_info >= (3, 8):
|
|
from typing import Literal
|
|
else:
|
|
from typing_extensions import Literal
|
|
|
|
_bytearray_like = Union[bytearray, mmap]
|
|
|
|
DEFAULT_BUFFER_SIZE: int
|
|
|
|
SEEK_SET: int
|
|
SEEK_CUR: int
|
|
SEEK_END: int
|
|
|
|
_T = TypeVar('_T', bound=IOBase)
|
|
|
|
_OpenTextMode = Literal[
|
|
'r', 'r+', '+r', 'rt', 'tr', 'rt+', 'r+t', '+rt', 'tr+', 't+r', '+tr',
|
|
'w', 'w+', '+w', 'wt', 'tw', 'wt+', 'w+t', '+wt', 'tw+', 't+w', '+tw',
|
|
'a', 'a+', '+a', 'at', 'ta', 'at+', 'a+t', '+at', 'ta+', 't+a', '+ta',
|
|
'x', 'x+', '+x', 'xt', 'tx', 'xt+', 'x+t', '+xt', 'tx+', 't+x', '+tx',
|
|
'U', 'rU', 'Ur', 'rtU', 'rUt', 'Urt', 'trU', 'tUr', 'Utr',
|
|
]
|
|
_OpenBinaryModeUpdating = Literal[
|
|
'rb+', 'r+b', '+rb', 'br+', 'b+r', '+br',
|
|
'wb+', 'w+b', '+wb', 'bw+', 'b+w', '+bw',
|
|
'ab+', 'a+b', '+ab', 'ba+', 'b+a', '+ba',
|
|
'xb+', 'x+b', '+xb', 'bx+', 'b+x', '+bx',
|
|
]
|
|
_OpenBinaryModeWriting = Literal[
|
|
'wb', 'bw',
|
|
'ab', 'ba',
|
|
'xb', 'bx',
|
|
]
|
|
_OpenBinaryModeReading = Literal[
|
|
'rb', 'br',
|
|
'rbU', 'rUb', 'Urb', 'brU', 'bUr', 'Ubr',
|
|
]
|
|
_OpenBinaryMode = Union[_OpenBinaryModeUpdating, _OpenBinaryModeReading, _OpenBinaryModeWriting]
|
|
|
|
open = builtins.open
|
|
|
|
if sys.version_info >= (3, 8):
|
|
def open_code(path: str) -> IO[bytes]: ...
|
|
|
|
BlockingIOError = builtins.BlockingIOError
|
|
class UnsupportedOperation(OSError, ValueError): ...
|
|
|
|
class IOBase:
|
|
def __iter__(self) -> Iterator[bytes]: ...
|
|
def __next__(self) -> bytes: ...
|
|
def __enter__(self: _T) -> _T: ...
|
|
def __exit__(self, exc_type: Optional[Type[BaseException]], exc_val: Optional[BaseException],
|
|
exc_tb: Optional[TracebackType]) -> Optional[bool]: ...
|
|
def close(self) -> None: ...
|
|
def fileno(self) -> int: ...
|
|
def flush(self) -> None: ...
|
|
def isatty(self) -> bool: ...
|
|
def readable(self) -> bool: ...
|
|
def readlines(self, __hint: int = ...) -> List[bytes]: ...
|
|
def seek(self, __offset: int, __whence: int = ...) -> int: ...
|
|
def seekable(self) -> bool: ...
|
|
def tell(self) -> int: ...
|
|
def truncate(self, __size: Optional[int] = ...) -> int: ...
|
|
def writable(self) -> bool: ...
|
|
def writelines(self, __lines: Iterable[Union[bytes, bytearray]]) -> None: ...
|
|
def readline(self, __size: Optional[int] = ...) -> bytes: ...
|
|
def __del__(self) -> None: ...
|
|
@property
|
|
def closed(self) -> bool: ...
|
|
def _checkClosed(self, msg: Optional[str] = ...) -> None: ... # undocumented
|
|
|
|
class RawIOBase(IOBase):
|
|
def readall(self) -> bytes: ...
|
|
def readinto(self, __buffer: bytearray) -> Optional[int]: ...
|
|
def write(self, __b: Union[bytes, bytearray]) -> Optional[int]: ...
|
|
def read(self, __size: int = ...) -> Optional[bytes]: ...
|
|
|
|
class BufferedIOBase(IOBase):
|
|
raw: RawIOBase # This is not part of the BufferedIOBase API and may not exist on some implementations.
|
|
def detach(self) -> RawIOBase: ...
|
|
def readinto(self, __buffer: _bytearray_like) -> int: ...
|
|
def write(self, __buffer: Union[bytes, bytearray]) -> int: ...
|
|
def readinto1(self, __buffer: _bytearray_like) -> int: ...
|
|
def read(self, __size: Optional[int] = ...) -> bytes: ...
|
|
def read1(self, __size: int = ...) -> bytes: ...
|
|
|
|
class FileIO(RawIOBase, BinaryIO):
|
|
mode: str
|
|
# Technically this is whatever is passed in as file, either a str, a bytes, or an int.
|
|
name: Union[int, str] # type: ignore
|
|
def __init__(
|
|
self,
|
|
file: Union[str, bytes, int],
|
|
mode: str = ...,
|
|
closefd: bool = ...,
|
|
opener: Optional[Callable[[Union[int, str], str], int]] = ...
|
|
) -> None: ...
|
|
def write(self, __b: bytes) -> int: ...
|
|
def read(self, __size: int = ...) -> bytes: ...
|
|
def __enter__(self: _T) -> _T: ...
|
|
|
|
class BytesIO(BufferedIOBase, BinaryIO):
|
|
def __init__(self, initial_bytes: bytes = ...) -> None: ...
|
|
# BytesIO does not contain a "name" field. This workaround is necessary
|
|
# to allow BytesIO sub-classes to add this field, as it is defined
|
|
# as a read-only property on IO[].
|
|
name: Any
|
|
def __enter__(self: _T) -> _T: ...
|
|
def getvalue(self) -> bytes: ...
|
|
def getbuffer(self) -> memoryview: ...
|
|
if sys.version_info >= (3, 7):
|
|
def read1(self, __size: Optional[int] = ...) -> bytes: ...
|
|
else:
|
|
def read1(self, __size: Optional[int]) -> bytes: ... # type: ignore
|
|
|
|
class BufferedReader(BufferedIOBase, BinaryIO):
|
|
def __enter__(self: _T) -> _T: ...
|
|
def __init__(self, raw: RawIOBase, buffer_size: int = ...) -> None: ...
|
|
def peek(self, __size: int = ...) -> bytes: ...
|
|
if sys.version_info >= (3, 7):
|
|
def read1(self, __size: int = ...) -> bytes: ...
|
|
else:
|
|
def read1(self, __size: int) -> bytes: ... # type: ignore
|
|
|
|
class BufferedWriter(BufferedIOBase, BinaryIO):
|
|
def __enter__(self: _T) -> _T: ...
|
|
def __init__(self, raw: RawIOBase, buffer_size: int = ...) -> None: ...
|
|
def write(self, __buffer: Union[bytes, bytearray]) -> int: ...
|
|
|
|
class BufferedRandom(BufferedReader, BufferedWriter):
|
|
def __enter__(self: _T) -> _T: ...
|
|
def __init__(self, raw: RawIOBase, buffer_size: int = ...) -> None: ...
|
|
def seek(self, __target: int, __whence: int = ...) -> int: ...
|
|
if sys.version_info >= (3, 7):
|
|
def read1(self, __size: int = ...) -> bytes: ...
|
|
else:
|
|
def read1(self, __size: int) -> bytes: ... # type: ignore
|
|
|
|
class BufferedRWPair(BufferedIOBase):
|
|
def __init__(self, reader: RawIOBase, writer: RawIOBase,
|
|
buffer_size: int = ...) -> None: ...
|
|
|
|
|
|
class TextIOBase(IOBase):
|
|
encoding: str
|
|
errors: Optional[str]
|
|
newlines: Union[str, Tuple[str, ...], None]
|
|
def __iter__(self) -> Iterator[str]: ... # type: ignore
|
|
def __next__(self) -> str: ... # type: ignore
|
|
def detach(self) -> BinaryIO: ...
|
|
def write(self, __s: str) -> int: ...
|
|
def writelines(self, __lines: List[str]) -> None: ... # type: ignore
|
|
def readline(self, __size: int = ...) -> str: ... # type: ignore
|
|
def readlines(self, __hint: int = ...) -> List[str]: ... # type: ignore
|
|
def read(self, __size: Optional[int] = ...) -> str: ...
|
|
def tell(self) -> int: ...
|
|
|
|
class TextIOWrapper(TextIOBase, TextIO):
|
|
line_buffering: bool
|
|
def __init__(
|
|
self,
|
|
buffer: IO[bytes],
|
|
encoding: Optional[str] = ...,
|
|
errors: Optional[str] = ...,
|
|
newline: Optional[str] = ...,
|
|
line_buffering: bool = ...,
|
|
write_through: bool = ...
|
|
) -> None: ...
|
|
@property
|
|
def buffer(self) -> BinaryIO: ...
|
|
if sys.version_info >= (3, 7):
|
|
def reconfigure(
|
|
self,
|
|
*,
|
|
encoding: Optional[str] = ...,
|
|
errors: Optional[str] = ...,
|
|
newline: Optional[str] = ...,
|
|
line_buffering: Optional[bool] = ...,
|
|
write_through: Optional[bool] = ...
|
|
) -> None: ...
|
|
closed: bool
|
|
# These are inherited from TextIOBase, but must exist in the stub to satisfy mypy.
|
|
def __enter__(self: _T) -> _T: ...
|
|
def __iter__(self) -> Iterator[str]: ... # type: ignore
|
|
def __next__(self) -> str: ... # type: ignore
|
|
def writelines(self, __lines: List[str]) -> None: ... # type: ignore
|
|
def readline(self, __size: int = ...) -> str: ... # type: ignore
|
|
def readlines(self, __hint: int = ...) -> List[str]: ... # type: ignore
|
|
def seek(self, __cookie: int, __whence: int = ...) -> int: ...
|
|
|
|
class StringIO(TextIOWrapper):
|
|
def __init__(self, initial_value: Optional[str] = ...,
|
|
newline: Optional[str] = ...) -> None: ...
|
|
# StringIO does not contain a "name" field. This workaround is necessary
|
|
# to allow StringIO sub-classes to add this field, as it is defined
|
|
# as a read-only property on IO[].
|
|
name: Any
|
|
def getvalue(self) -> str: ...
|
|
|
|
class IncrementalNewlineDecoder(codecs.IncrementalDecoder):
|
|
def __init__(self, decoder: Optional[codecs.IncrementalDecoder],
|
|
translate: bool, errors: str = ...) -> None: ...
|
|
def decode(self, input: Union[bytes, str], final: bool = ...) -> str: ...
|