Buckets:
| import abc | |
| from collections.abc import Iterable, Mapping, MutableMapping | |
| from typing import TYPE_CHECKING, Protocol, TypeVar, Union, overload | |
| if TYPE_CHECKING: | |
| from ._multidict_py import istr | |
| else: | |
| istr = str | |
| _V = TypeVar("_V") | |
| _V_co = TypeVar("_V_co", covariant=True) | |
| _T = TypeVar("_T") | |
| class SupportsKeys(Protocol[_V_co]): | |
| def keys(self) -> Iterable[str]: ... | |
| def __getitem__(self, key: str, /) -> _V_co: ... | |
| class SupportsIKeys(Protocol[_V_co]): | |
| def keys(self) -> Iterable[istr]: ... | |
| def __getitem__(self, key: istr, /) -> _V_co: ... | |
| MDArg = Union[SupportsKeys[_V], SupportsIKeys[_V], Iterable[tuple[str, _V]], None] | |
| class MultiMapping(Mapping[str, _V_co]): | |
| def getall(self, key: str) -> list[_V_co]: ... | |
| def getall(self, key: str, default: _T) -> Union[list[_V_co], _T]: ... | |
| def getall(self, key: str, default: _T = ...) -> Union[list[_V_co], _T]: | |
| """Return all values for key.""" | |
| def getone(self, key: str) -> _V_co: ... | |
| def getone(self, key: str, default: _T) -> Union[_V_co, _T]: ... | |
| def getone(self, key: str, default: _T = ...) -> Union[_V_co, _T]: | |
| """Return first value for key.""" | |
| class MutableMultiMapping(MultiMapping[_V], MutableMapping[str, _V]): | |
| def add(self, key: str, value: _V) -> None: | |
| """Add value to list.""" | |
| def extend(self, arg: MDArg[_V] = None, /, **kwargs: _V) -> None: | |
| """Add everything from arg and kwargs to the mapping.""" | |
| def merge(self, arg: MDArg[_V] = None, /, **kwargs: _V) -> None: | |
| """Merge into the mapping, adding non-existing keys.""" | |
| def popone(self, key: str) -> _V: ... | |
| def popone(self, key: str, default: _T) -> Union[_V, _T]: ... | |
| def popone(self, key: str, default: _T = ...) -> Union[_V, _T]: | |
| """Remove specified key and return the corresponding value.""" | |
| def popall(self, key: str) -> list[_V]: ... | |
| def popall(self, key: str, default: _T) -> Union[list[_V], _T]: ... | |
| def popall(self, key: str, default: _T = ...) -> Union[list[_V], _T]: | |
| """Remove all occurrences of key and return the list of corresponding values.""" | |
Xet Storage Details
- Size:
- 2.4 kB
- Xet hash:
- 25a7dee28976e884b90ea97102c5c1a43faa4e591985a761c095f4b04f1f23c3
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.