mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-21 11:21:20 +08:00
enable bunch of folders
This commit is contained in:
@@ -60,6 +60,7 @@ class HttpRequest(BytesIO):
|
||||
|
||||
class QueryDict(MultiValueDict[str, str]):
|
||||
encoding = str # type: Any
|
||||
_mutable: bool = ...
|
||||
def __init__(
|
||||
self, query_string: Union[str, bytes, None] = None, mutable: bool = False, encoding: Optional[str] = None
|
||||
) -> None: ...
|
||||
|
||||
@@ -31,7 +31,7 @@ class HttpResponseBase(six.Iterator):
|
||||
def has_header(self, header: str) -> bool: ...
|
||||
def items(self) -> Iterable[Tuple[str, str]]: ...
|
||||
@overload
|
||||
def get(self, header: str, alternate: str = ...) -> str: ...
|
||||
def get(self, header: str, alternate: str) -> str: ...
|
||||
@overload
|
||||
def get(self, header: str) -> Optional[str]: ...
|
||||
def set_cookie(
|
||||
|
||||
Reference in New Issue
Block a user