mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 05:24:52 +08:00
33 lines
1.2 KiB
Python
33 lines
1.2 KiB
Python
from _typeshed import OptExcInfo
|
|
from collections.abc import Callable, Iterable, Iterator
|
|
from typing import Any, Protocol
|
|
from typing_extensions import TypeAlias
|
|
|
|
__all__ = ["StartResponse", "WSGIEnvironment", "WSGIApplication", "InputStream", "ErrorStream", "FileWrapper"]
|
|
|
|
class StartResponse(Protocol):
|
|
def __call__(
|
|
self, status: str, headers: list[tuple[str, str]], exc_info: OptExcInfo | None = ..., /
|
|
) -> Callable[[bytes], object]: ...
|
|
|
|
WSGIEnvironment: TypeAlias = dict[str, Any]
|
|
WSGIApplication: TypeAlias = Callable[[WSGIEnvironment, StartResponse], Iterable[bytes]]
|
|
|
|
class InputStream(Protocol):
|
|
def read(self, size: int = ..., /) -> bytes: ...
|
|
def readline(self, size: int = ..., /) -> bytes: ...
|
|
def readlines(self, hint: int = ..., /) -> list[bytes]: ...
|
|
def __iter__(self) -> Iterator[bytes]: ...
|
|
|
|
class ErrorStream(Protocol):
|
|
def flush(self) -> object: ...
|
|
def write(self, s: str, /) -> object: ...
|
|
def writelines(self, seq: list[str], /) -> object: ...
|
|
|
|
class _Readable(Protocol):
|
|
def read(self, size: int = ..., /) -> bytes: ...
|
|
# Optional: def close(self) -> object: ...
|
|
|
|
class FileWrapper(Protocol):
|
|
def __call__(self, file: _Readable, block_size: int = ..., /) -> Iterable[bytes]: ...
|