mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-06 12:14:27 +08:00
Return Dict from copy(). (#4510)
This commit is contained in:
@@ -140,7 +140,7 @@ class MappingProxyType(Mapping[_KT, _VT], Generic[_KT, _VT]):
|
||||
def __getitem__(self, k: _KT) -> _VT: ...
|
||||
def __iter__(self) -> Iterator[_KT]: ...
|
||||
def __len__(self) -> int: ...
|
||||
def copy(self) -> Mapping[_KT, _VT]: ...
|
||||
def copy(self) -> Dict[_KT, _VT]: ...
|
||||
|
||||
class SimpleNamespace:
|
||||
def __init__(self, **kwargs: Any) -> None: ...
|
||||
|
||||
Reference in New Issue
Block a user