fourth iteration

This commit is contained in:
Maxim Kurnikov
2018-08-11 02:23:18 +03:00
parent c6bceb19f4
commit 8cc446150c
113 changed files with 2285 additions and 9835 deletions

View File

@@ -24,21 +24,21 @@ def urlencode(
Dict[str, bytearray],
Dict[str, bytes],
Dict[str, date],
List[Union[Tuple[str, int], Tuple[str, str]]],
List[Tuple[str, Union[int, str]]],
Tuple[Tuple[str, int], Tuple[str, int], Tuple[str, int]],
str,
],
doseq: bool = ...,
) -> str: ...
def cookie_date(epoch_seconds: float = ...) -> str: ...
def http_date(epoch_seconds: Union[float, int] = ...) -> str: ...
def http_date(epoch_seconds: float = ...) -> str: ...
def parse_http_date(date: str) -> int: ...
def parse_http_date_safe(date: str) -> Optional[int]: ...
def base36_to_int(
s: Union[Dict[int, int], Tuple[int, int, int], float, int, str]
s: Union[Dict[int, int], Tuple[int, int, int], float, str]
) -> int: ...
def int_to_base36(
i: Union[Dict[int, int], Tuple[int, int, int], float, int, str]
i: Union[Dict[int, int], Tuple[int, int, int], float, str]
) -> str: ...
def urlsafe_base64_encode(s: bytes) -> bytes: ...
def urlsafe_base64_decode(s: Union[bytes, str]) -> bytes: ...