Skip to content

Commit

Permalink
remove _Val alias for MultiValueDict so that generic evaluate
Browse files Browse the repository at this point in the history
  • Loading branch information
mkurnikov committed Mar 1, 2019
1 parent 9e4ed70 commit a0e2f8a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions django-stubs/utils/datastructures.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ from typing import (
Iterator,
)

from typing_extensions import Literal

_K = TypeVar("_K")
_V = TypeVar("_V")

Expand All @@ -27,24 +29,22 @@ class OrderedSet(MutableSet[_K]):

class MultiValueDictKeyError(KeyError): ...

_Val = Union[_V, List[_V]]

class MultiValueDict(MutableMapping[_K, _V]):
@overload
def __init__(self, key_to_list_mapping: Iterable[Tuple[_K, _Val]] = ...) -> None: ...
def __init__(self, key_to_list_mapping: Iterable[Tuple[_K, Union[_V, List[_V]]]] = ...) -> None: ...
@overload
def __init__(self, key_to_list_mapping: Mapping[_K, _Val] = ...) -> None: ...
def __init__(self, key_to_list_mapping: Mapping[_K, Union[_V, List[_V]]] = ...) -> None: ...
def getlist(self, key: _K, default: List[_V] = None) -> List[_V]: ...
def setlist(self, key: _K, list_: List[_V]) -> None: ...
def setlistdefault(self, key: _K, default_list: List[_V] = None) -> List[_V]: ...
def appendlist(self, key: _K, value: _V) -> None: ...
def lists(self) -> Iterable[Tuple[_K, List[_V]]]: ...
def dict(self) -> Dict[_K, _Val]: ...
def dict(self) -> Dict[_K, Union[_V, List[_V]]]: ...
def copy(self) -> MultiValueDict[_K, _V]: ...
# These overrides are needed to convince mypy that this isn't an abstract class
def __delitem__(self, item: _K) -> None: ...
def __getitem__(self, item: _K) -> _Val: ... # type: ignore
def __setitem__(self, k: _K, v: _Val) -> None: ...
def __getitem__(self, item: _K) -> Union[_V, Literal[[]]]: ... # type: ignore
def __setitem__(self, k: _K, v: Union[_V, List[_V]]) -> None: ...
def __len__(self) -> int: ...
def __iter__(self) -> Iterator[_K]: ...

Expand Down

0 comments on commit a0e2f8a

Please sign in to comment.