mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-16 00:37:10 +08:00
Remove nearly all __str__ and __repr__ methods from typeshed (#6968)
This commit is contained in:
@@ -1,5 +1,4 @@
|
||||
frozendict.FrozenOrderedDict
|
||||
frozendict.frozendict.__hash__
|
||||
frozendict.frozendict.__new__
|
||||
frozendict.frozendict.__repr__
|
||||
frozendict.frozendict.copy
|
||||
|
||||
@@ -19,7 +19,6 @@ class frozendict(Mapping[_KT, _VT], Generic[_KT, _VT]):
|
||||
def copy(self: Self, **add_or_replace: _VT) -> Self: ...
|
||||
def __iter__(self) -> Iterator[_KT]: ...
|
||||
def __len__(self) -> int: ...
|
||||
def __repr__(self) -> str: ...
|
||||
def __hash__(self) -> int: ...
|
||||
|
||||
class FrozenOrderedDict(frozendict[_KT, _VT]):
|
||||
|
||||
Reference in New Issue
Block a user