mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-19 02:15:59 +08:00
fourth iteration
This commit is contained in:
@@ -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: ...
|
||||
|
||||
Reference in New Issue
Block a user