mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-15 08:17:08 +08:00
run black over stubs, add checking to travis
This commit is contained in:
@@ -3,21 +3,16 @@ from typing import Any, Dict, List, Optional, Type, Union
|
||||
|
||||
from django.contrib.sessions.serializers import PickleSerializer
|
||||
|
||||
|
||||
class BadSignature(Exception): ...
|
||||
class SignatureExpired(BadSignature): ...
|
||||
|
||||
def b64_encode(s: bytes) -> bytes: ...
|
||||
def b64_decode(s: bytes) -> bytes: ...
|
||||
def base64_hmac(
|
||||
salt: str, value: Union[bytes, str], key: Union[bytes, str]
|
||||
) -> str: ...
|
||||
def base64_hmac(salt: str, value: Union[bytes, str], key: Union[bytes, str]) -> str: ...
|
||||
def get_cookie_signer(salt: str = ...) -> TimestampSigner: ...
|
||||
|
||||
class JSONSerializer:
|
||||
def dumps(
|
||||
self, obj: Union[Dict[str, Union[int, str]], List[str], str]
|
||||
) -> bytes: ...
|
||||
def dumps(self, obj: Union[Dict[str, Union[int, str]], List[str], str]) -> bytes: ...
|
||||
def loads(self, data: bytes) -> Dict[str, Union[int, str]]: ...
|
||||
|
||||
def dumps(
|
||||
@@ -33,20 +28,13 @@ def loads(
|
||||
salt: str = ...,
|
||||
serializer: Type[Union[PickleSerializer, JSONSerializer]] = ...,
|
||||
max_age: Optional[int] = ...,
|
||||
) -> Union[
|
||||
Dict[str, Union[datetime, str]], Dict[str, Union[int, str]], List[str], str
|
||||
]: ...
|
||||
) -> Union[Dict[str, Union[datetime, str]], Dict[str, Union[int, str]], List[str], str]: ...
|
||||
|
||||
class Signer:
|
||||
key: str = ...
|
||||
sep: str = ...
|
||||
salt: Any = ...
|
||||
def __init__(
|
||||
self,
|
||||
key: Optional[Union[bytes, str]] = ...,
|
||||
sep: str = ...,
|
||||
salt: Optional[str] = ...,
|
||||
) -> None: ...
|
||||
def __init__(self, key: Optional[Union[bytes, str]] = ..., sep: str = ..., salt: Optional[str] = ...) -> None: ...
|
||||
def signature(self, value: Union[bytes, str]) -> str: ...
|
||||
def sign(self, value: str) -> str: ...
|
||||
def unsign(self, signed_value: str) -> str: ...
|
||||
|
||||
Reference in New Issue
Block a user