Voice et bot modif
This commit is contained in:
parent
189d56026b
commit
7333a22bcd
10774 changed files with 634644 additions and 933308 deletions
|
|
@ -1,10 +1,18 @@
|
|||
from collections.abc import MutableMapping
|
||||
from typing import Iterator
|
||||
from typing import Iterable, Iterator, Mapping
|
||||
|
||||
class Dictionary(MutableMapping[str, str]):
|
||||
class Dictionary:
|
||||
def __getitem__(self, key: str) -> str: ...
|
||||
def __setitem__(self, key: str, value: str) -> None: ...
|
||||
def __delitem__(self, key: str) -> None: ...
|
||||
def __len__(self) -> int: ...
|
||||
def __iter__(self) -> Iterator[str]: ...
|
||||
def __repr__(self) -> str: ...
|
||||
def keys(self) -> Iterable[str]: ...
|
||||
def copy(self) -> Dictionary: ...
|
||||
def pop(self, key: str) -> str: ...
|
||||
def update(
|
||||
self,
|
||||
other: Mapping[str, str] | Iterable[tuple[str, str]] = (),
|
||||
/,
|
||||
**kwds: str,
|
||||
) -> None: ...
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue