fifth iteration

This commit is contained in:
Maxim Kurnikov
2018-08-14 12:01:01 +03:00
parent 8cc446150c
commit a13d4c352a
124 changed files with 1455 additions and 5681 deletions

View File

@@ -61,18 +61,6 @@ class Parser:
self
) -> Iterator[
Tuple[
str,
Dict[
str,
Tuple[
str,
Union[
Dict[str, Union[bytes, str]],
Dict[str, bytes],
Dict[str, str],
],
],
],
LazyStream,
str, Dict[str, Tuple[str, Dict[str, Union[bytes, str]]]], LazyStream
]
]: ...

View File

@@ -16,8 +16,8 @@ class HttpRequest:
get_host: Callable
sensitive_post_parameters: str
session: django.contrib.sessions.backends.db.SessionStore
GET: Dict[str, str] = ...
POST: Dict[str, str] = ...
GET: Union[Dict[str, str], django.http.request.QueryDict] = ...
POST: Union[Dict[str, str], django.http.request.QueryDict] = ...
COOKIES: Dict[str, str] = ...
META: Dict[str, Union[int, str]] = ...
FILES: django.utils.datastructures.MultiValueDict = ...

View File

@@ -289,7 +289,6 @@ class JsonResponse(HttpResponse):
self,
data: Union[
Dict[str, Dict[str, str]],
Dict[str, Union[Dict[str, bool], List[Dict[str, str]]]],
Dict[str, int],
Dict[str, str],
List[int],