mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 21:14:48 +08:00
Big diff: use lower-case list and dict (#5888)
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import sys
|
||||
from _typeshed import StrPath
|
||||
from typing import IO, Dict, List, Sequence, Tuple
|
||||
from typing import IO, Sequence, Tuple
|
||||
|
||||
if sys.version_info >= (3, 8):
|
||||
def guess_type(url: StrPath, strict: bool = ...) -> Tuple[str | None, str | None]: ...
|
||||
@@ -8,28 +8,28 @@ if sys.version_info >= (3, 8):
|
||||
else:
|
||||
def guess_type(url: str, strict: bool = ...) -> Tuple[str | None, str | None]: ...
|
||||
|
||||
def guess_all_extensions(type: str, strict: bool = ...) -> List[str]: ...
|
||||
def guess_all_extensions(type: str, strict: bool = ...) -> list[str]: ...
|
||||
def guess_extension(type: str, strict: bool = ...) -> str | None: ...
|
||||
def init(files: Sequence[str] | None = ...) -> None: ...
|
||||
def read_mime_types(file: str) -> Dict[str, str] | None: ...
|
||||
def read_mime_types(file: str) -> dict[str, str] | None: ...
|
||||
def add_type(type: str, ext: str, strict: bool = ...) -> None: ...
|
||||
|
||||
inited: bool
|
||||
knownfiles: List[str]
|
||||
suffix_map: Dict[str, str]
|
||||
encodings_map: Dict[str, str]
|
||||
types_map: Dict[str, str]
|
||||
common_types: Dict[str, str]
|
||||
knownfiles: list[str]
|
||||
suffix_map: dict[str, str]
|
||||
encodings_map: dict[str, str]
|
||||
types_map: dict[str, str]
|
||||
common_types: dict[str, str]
|
||||
|
||||
class MimeTypes:
|
||||
suffix_map: Dict[str, str]
|
||||
encodings_map: Dict[str, str]
|
||||
types_map: Tuple[Dict[str, str], Dict[str, str]]
|
||||
types_map_inv: Tuple[Dict[str, str], Dict[str, str]]
|
||||
suffix_map: dict[str, str]
|
||||
encodings_map: dict[str, str]
|
||||
types_map: Tuple[dict[str, str], dict[str, str]]
|
||||
types_map_inv: Tuple[dict[str, str], dict[str, str]]
|
||||
def __init__(self, filenames: Tuple[str, ...] = ..., strict: bool = ...) -> None: ...
|
||||
def guess_extension(self, type: str, strict: bool = ...) -> str | None: ...
|
||||
def guess_type(self, url: str, strict: bool = ...) -> Tuple[str | None, str | None]: ...
|
||||
def guess_all_extensions(self, type: str, strict: bool = ...) -> List[str]: ...
|
||||
def guess_all_extensions(self, type: str, strict: bool = ...) -> list[str]: ...
|
||||
def read(self, filename: str, strict: bool = ...) -> None: ...
|
||||
def readfp(self, fp: IO[str], strict: bool = ...) -> None: ...
|
||||
if sys.platform == "win32":
|
||||
|
||||
Reference in New Issue
Block a user