Skip to content
This repository has been archived by the owner on Dec 27, 2021. It is now read-only.

Commit

Permalink
Return Dict from copy(). (python#4510)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dreamsorcerer authored Nov 2, 2020
1 parent 40b44a9 commit 57b86e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stdlib/3/types.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -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: ...
Expand Down

0 comments on commit 57b86e0

Please sign in to comment.