mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-26 13:51:30 +08:00
Correct several positional-only differences in third-party stubs (#7352)
This commit is contained in:
@@ -15,7 +15,7 @@ class frozendict(Mapping[_KT, _VT], Generic[_KT, _VT]):
|
||||
@overload
|
||||
def __init__(self, iterable: Iterable[tuple[_KT, _VT]]) -> None: ...
|
||||
def __getitem__(self, key: _KT) -> _VT: ...
|
||||
def __contains__(self, key: object) -> bool: ...
|
||||
def __contains__(self, __key: object) -> bool: ...
|
||||
def copy(self: Self, **add_or_replace: _VT) -> Self: ...
|
||||
def __iter__(self) -> Iterator[_KT]: ...
|
||||
def __len__(self) -> int: ...
|
||||
|
||||
Reference in New Issue
Block a user