%PDF- %PDF-
Direktori : /data/old/usr/lib64/python3.4/site-packages/multidict/ |
Current File : //data/old/usr/lib64/python3.4/site-packages/multidict/__init__.pyi |
from typing import (Mapping, MutableMapping, List, Union, Iterable, Iterator, TypeVar, Generic, Tuple, Dict) class istr(str): pass upstr = istr _S = Union[str, istr] _T = TypeVar('_T') class MultiMapping(Mapping[_S, _T], Generic[_T]): def getall(self, key: _S, default: _T = ...) -> List[_T]: ... def getone(self, key: _S, default: _T = ...) -> _T: ... _Arg = Union[Mapping[_S, _T], Dict[_S, _T], MultiMapping[_T], Iterable[Tuple[_S, _T]]] class MutableMultiMapping(MultiMapping[_T], MutableMapping[_S, _T], Generic[_T]): def add(self, key: _S, value: _T) -> None: ... def extend(self, arg: _Arg = ..., **kwargs: _T) -> None: ... def popone(self, key: _S, default: _T = ...) -> _T: ... def popall(self, key: _S, default: _T = ...) -> List[_T]: ... class MultiDict(MutableMultiMapping[_T], Generic[_T]): def __init__(self, arg: _Arg = ..., **kwargs: _T) -> None: ... def copy(self) -> MultiDict[_T]: ... def __getitem__(self, k: _S) -> _T: ... def __setitem__(self, k: _S, v: _T) -> None: ... def __delitem__(self, v: _S) -> None: ... def __iter__(self) -> Iterator[_S]: ... def __len__(self) -> int: ... class CIMultiDict(MutableMultiMapping[_T], Generic[_T]): def __init__(self, arg: _Arg = ..., **kwargs: _T) -> None: ... def copy(self) -> CIMultiDict[_T]: ... def __getitem__(self, k: _S) -> _T: ... def __setitem__(self, k: _S, v: _T) -> None: ... def __delitem__(self, v: _S) -> None: ... def __iter__(self) -> Iterator[_S]: ... def __len__(self) -> int: ... class MultiDictProxy(MultiMapping[_T], Generic[_T]): def __init__(self, arg: Union[MultiMapping[_T], MutableMultiMapping[_T]]) -> None: ... def copy(self) -> MultiDictProxy[_T]: ... def __getitem__(self, k: _S) -> _T: ... def __iter__(self) -> Iterator[_S]: ... def __len__(self) -> int: ... class CIMultiDictProxy(MultiMapping[_T], Generic[_T]): def __init__(self, arg: Union[MultiMapping[_T], MutableMultiMapping[_T]]) -> None: ... def copy(self) -> CIMultiDictProxy[_T]: ... def __getitem__(self, k: _S) -> _T: ... def __iter__(self) -> Iterator[_S]: ... def __len__(self) -> int: ... def getversion(md: Union[MultiDict[_T], CIMultiDict[_T], MultiDictProxy[_T], CIMultiDictProxy[_T]]) -> int: ...