improved version

This commit is contained in:
Maxim Kurnikov
2018-07-29 20:06:41 +03:00
parent c180555415
commit 89bb6eac75
160 changed files with 1007 additions and 607 deletions

View File

@@ -28,10 +28,10 @@ def base36_to_int(s: str) -> int: ...
def cookie_date(epoch_seconds: float = ...) -> str: ...
def http_date(epoch_seconds: Union[float, int] = ...) -> str: ...
def http_date(epoch_seconds: float = ...) -> str: ...
def int_to_base36(i: Union[str, int, Dict[int, int]]) -> str: ...
def int_to_base36(i: Union[str, Dict[int, int], int]) -> str: ...
def is_safe_url(url: Optional[str], allowed_hosts: Optional[Set[str]], require_https: bool = ...) -> bool: ...