run black over stubs, add checking to travis

This commit is contained in:
Maxim Kurnikov
2018-12-03 18:52:44 +03:00
parent d5bc7d4ab2
commit cf6119bf9b
420 changed files with 2295 additions and 8384 deletions

View File

@@ -1,7 +1,4 @@
from django.http.cookie import (
SimpleCookie as SimpleCookie,
parse_cookie as parse_cookie
)
from django.http.cookie import SimpleCookie as SimpleCookie, parse_cookie as parse_cookie
from django.http.request import (
HttpRequest as HttpRequest,
QueryDict as QueryDict,
@@ -22,5 +19,6 @@ from django.http.response import (
HttpResponsePermanentRedirect as HttpResponsePermanentRedirect,
HttpResponseRedirect as HttpResponseRedirect,
HttpResponseServerError as HttpResponseServerError,
JsonResponse as JsonResponse, StreamingHttpResponse as StreamingHttpResponse
JsonResponse as JsonResponse,
StreamingHttpResponse as StreamingHttpResponse,
)

View File

@@ -5,7 +5,6 @@ from django.core.handlers.wsgi import WSGIRequest
from django.http.request import QueryDict
from django.utils.datastructures import ImmutableList, MultiValueDict
class MultiPartParserError(Exception): ...
class InputStreamExhausted(Exception): ...
@@ -18,17 +17,13 @@ class MultiPartParser:
encoding: Optional[str] = ...,
) -> None: ...
def parse(self) -> Tuple[QueryDict, MultiValueDict]: ...
def handle_file_complete(
self, old_field_name: str, counters: List[int]
) -> None: ...
def handle_file_complete(self, old_field_name: str, counters: List[int]) -> None: ...
def IE_sanitize(self, filename: str) -> str: ...
class LazyStream:
length: None = ...
position: int = ...
def __init__(
self, producer: Union[BoundaryIter, ChunkIter], length: None = ...
) -> None: ...
def __init__(self, producer: Union[BoundaryIter, ChunkIter], length: None = ...) -> None: ...
def tell(self): ...
def read(self, size: Optional[int] = ...) -> bytes: ...
def __next__(self) -> bytes: ...
@@ -39,9 +34,7 @@ class LazyStream:
class ChunkIter:
flo: Union[_io.BytesIO, django.core.handlers.wsgi.WSGIRequest] = ...
chunk_size: int = ...
def __init__(
self, flo: Union[BytesIO, WSGIRequest], chunk_size: int = ...
) -> None: ...
def __init__(self, flo: Union[BytesIO, WSGIRequest], chunk_size: int = ...) -> None: ...
def __next__(self) -> bytes: ...
def __iter__(self): ...
@@ -57,10 +50,4 @@ class BoundaryIter:
class Parser:
def __init__(self, stream: LazyStream, boundary: bytes) -> None: ...
def __iter__(
self
) -> Iterator[
Tuple[
str, Dict[str, Tuple[str, Dict[str, Union[bytes, str]]]], LazyStream
]
]: ...
def __iter__(self) -> Iterator[Tuple[str, Dict[str, Tuple[str, Dict[str, Union[bytes, str]]]], LazyStream]]: ...

View File

@@ -33,13 +33,7 @@ class HttpRequest:
def get_port(self) -> str: ...
def get_full_path(self, force_append_slash: bool = ...) -> str: ...
def get_full_path_info(self, force_append_slash: bool = ...) -> str: ...
def get_signed_cookie(
self,
key: str,
default: Any = ...,
salt: str = ...,
max_age: Optional[int] = ...,
) -> Optional[str]: ...
def get_signed_cookie(self, key: str, default: Any = ..., salt: str = ..., max_age: Optional[int] = ...) -> Optional[str]: ...
def get_raw_uri(self) -> str: ...
def build_absolute_uri(self, location: Optional[str] = ...) -> str: ...
@property
@@ -70,10 +64,7 @@ class HttpRequest:
class QueryDict(MultiValueDict):
encoding: Any = ...
def __init__(
self,
query_string: Optional[Union[bytes, str]] = ...,
mutable: bool = ...,
encoding: Optional[str] = ...,
self, query_string: Optional[Union[bytes, str]] = ..., mutable: bool = ..., encoding: Optional[str] = ...
) -> None: ...
@classmethod
def fromkeys(
@@ -87,19 +78,13 @@ class QueryDict(MultiValueDict):
def encoding(self): ...
@encoding.setter
def encoding(self, value: Any) -> None: ...
def __setitem__(
self, key: str, value: Optional[Union[int, str]]
) -> None: ...
def __setitem__(self, key: str, value: Optional[Union[int, str]]) -> None: ...
def __delitem__(self, key: str) -> None: ...
def __copy__(self) -> QueryDict: ...
def __deepcopy__(self, memo: Dict[Any, Any]) -> QueryDict: ...
def setlist(self, key: str, list_: List[str]) -> None: ...
def setlistdefault(
self, key: str, default_list: None = ...
) -> List[str]: ...
def appendlist(
self, key: Union[bytes, str], value: Union[List[str], bytes, str]
) -> None: ...
def setlistdefault(self, key: str, default_list: None = ...) -> List[str]: ...
def appendlist(self, key: Union[bytes, str], value: Union[List[str], bytes, str]) -> None: ...
def pop(self, key: str, *args: Any) -> Optional[Union[List[str], str]]: ...
def popitem(self) -> Any: ...
def clear(self) -> None: ...
@@ -107,8 +92,6 @@ class QueryDict(MultiValueDict):
def copy(self) -> QueryDict: ...
def urlencode(self, safe: Optional[str] = ...) -> str: ...
def bytes_to_text(
s: Optional[Union[bytes, int, str]], encoding: str
) -> Optional[Union[int, str]]: ...
def bytes_to_text(s: Optional[Union[bytes, int, str]], encoding: str) -> Optional[Union[int, str]]: ...
def split_domain_port(host: str) -> Tuple[str, str]: ...
def validate_host(host: str, allowed_hosts: Union[List[str], str]) -> bool: ...

View File

@@ -16,7 +16,6 @@ from django.test import Client
from django.test.client import FakePayload
from django.urls import ResolverMatch
class BadHeaderError(ValueError): ...
class HttpResponseBase:
@@ -24,11 +23,7 @@ class HttpResponseBase:
cookies: cookies.SimpleCookie = ...
closed: bool = ...
def __init__(
self,
content_type: Optional[str] = ...,
status: Any = ...,
reason: Optional[str] = ...,
charset: Optional[str] = ...,
self, content_type: Optional[str] = ..., status: Any = ..., reason: Optional[str] = ..., charset: Optional[str] = ...
) -> None: ...
@property
def reason_phrase(self): ...
@@ -40,17 +35,13 @@ class HttpResponseBase:
def charset(self, value: Any) -> None: ...
def serialize_headers(self) -> bytes: ...
__bytes__: Any = ...
def __setitem__(
self, header: Union[bytes, str], value: Union[bytes, int, str]
) -> None: ...
def __setitem__(self, header: Union[bytes, str], value: Union[bytes, int, str]) -> None: ...
def __delitem__(self, header: str) -> None: ...
def __getitem__(self, header: str) -> str: ...
def has_header(self, header: str) -> bool: ...
__contains__: Any = ...
def items(self): ...
def get(
self, header: str, alternate: Optional[Union[Tuple, str]] = ...
) -> Optional[Union[Tuple, str]]: ...
def get(self, header: str, alternate: Optional[Union[Tuple, str]] = ...) -> Optional[Union[Tuple, str]]: ...
def set_cookie(
self,
key: str,
@@ -64,12 +55,8 @@ class HttpResponseBase:
samesite: Optional[str] = ...,
) -> None: ...
def setdefault(self, key: str, value: str) -> None: ...
def set_signed_cookie(
self, key: str, value: str, salt: str = ..., **kwargs: Any
) -> None: ...
def delete_cookie(
self, key: str, path: str = ..., domain: Optional[str] = ...
) -> None: ...
def set_signed_cookie(self, key: str, value: str, salt: str = ..., **kwargs: Any) -> None: ...
def delete_cookie(self, key: str, path: str = ..., domain: Optional[str] = ...) -> None: ...
def make_bytes(self, value: Union[bytes, int, str]) -> bytes: ...
def close(self) -> None: ...
def write(self, content: str) -> Any: ...
@@ -99,9 +86,7 @@ class HttpResponse(HttpResponseBase):
xframe_options_exempt: bool
streaming: bool = ...
content: Any = ...
def __init__(
self, content: Any = ..., *args: Any, **kwargs: Any
) -> None: ...
def __init__(self, content: Any = ..., *args: Any, **kwargs: Any) -> None: ...
def serialize(self): ...
__bytes__: Any = ...
@property
@@ -128,9 +113,7 @@ class StreamingHttpResponse(HttpResponseBase):
wsgi_request: WSGIRequest
streaming: bool = ...
streaming_content: Any = ...
def __init__(
self, streaming_content: Any = ..., *args: Any, **kwargs: Any
) -> None: ...
def __init__(self, streaming_content: Any = ..., *args: Any, **kwargs: Any) -> None: ...
@property
def content(self) -> Any: ...
@property
@@ -145,14 +128,7 @@ class FileResponse(StreamingHttpResponse):
closed: bool
context: None
cookies: cookies.SimpleCookie
file_to_stream: Optional[
Union[
io.BufferedReader,
io.BytesIO,
ContentFile,
tempfile._TemporaryFileWrapper,
]
]
file_to_stream: Optional[Union[io.BufferedReader, io.BytesIO, ContentFile, tempfile._TemporaryFileWrapper]]
json: functools.partial
request: Dict[str, str]
resolver_match: ResolverMatch
@@ -161,19 +137,8 @@ class FileResponse(StreamingHttpResponse):
block_size: int = ...
as_attachment: bool = ...
filename: str = ...
def __init__(
self,
*args: Any,
as_attachment: bool = ...,
filename: str = ...,
**kwargs: Any
) -> None: ...
def set_headers(
self,
filelike: Union[
BufferedReader, BytesIO, ContentFile, _TemporaryFileWrapper
],
) -> None: ...
def __init__(self, *args: Any, as_attachment: bool = ..., filename: str = ..., **kwargs: Any) -> None: ...
def set_headers(self, filelike: Union[BufferedReader, BytesIO, ContentFile, _TemporaryFileWrapper]) -> None: ...
class HttpResponseRedirectBase(HttpResponse):
allowed_schemes: Any = ...
@@ -188,9 +153,7 @@ class HttpResponseRedirect(HttpResponseRedirectBase):
csrf_cookie_set: bool
json: functools.partial
redirect_chain: List[Tuple[str, int]]
request: Dict[
str, Union[Dict[str, str], FakePayload, int, str]
]
request: Dict[str, Union[Dict[str, str], FakePayload, int, str]]
resolver_match: ResolverMatch
templates: List[Template]
wsgi_request: WSGIRequest
@@ -253,12 +216,7 @@ class HttpResponseNotAllowed(HttpResponse):
closed: bool
cookies: cookies.SimpleCookie
status_code: int = ...
def __init__(
self,
permitted_methods: Union[List[str], Tuple[str, str]],
*args: Any,
**kwargs: Any
) -> None: ...
def __init__(self, permitted_methods: Union[List[str], Tuple[str, str]], *args: Any, **kwargs: Any) -> None: ...
class HttpResponseGone(HttpResponse):
closed: bool