Skip to content

Commit fb30879

Browse files
authored
commit 22
1 parent 197295b commit fb30879

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

stdlib/_collections_abc.pyi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ class dict_keys(KeysView[_KT_co], Generic[_KT_co, _VT_co]): # undocumented
7575
def __reversed__(self) -> Iterator[_KT_co]: ...
7676
__hash__: ClassVar[None] # type: ignore[assignment]
7777
if sys.version_info >= (3, 13):
78-
def isdisjoint(self, other: Iterable[_KT_co], /) -> bool: ...
78+
def isdisjoint(self, other: Iterable[Hashable], /) -> bool: ...
7979

8080
@property
8181
def mapping(self) -> MappingProxyType[_KT_co, _VT_co]: ...
@@ -92,7 +92,7 @@ class dict_items(ItemsView[_KT_co, _VT_co]): # undocumented
9292
def __reversed__(self) -> Iterator[tuple[_KT_co, _VT_co]]: ...
9393
__hash__: ClassVar[None] # type: ignore[assignment]
9494
if sys.version_info >= (3, 13):
95-
def isdisjoint(self, other: Iterable[tuple[_KT_co, _VT_co]], /) -> bool: ...
95+
def isdisjoint(self, other: Iterable[Hashable], /) -> bool: ...
9696

9797
@property
9898
def mapping(self) -> MappingProxyType[_KT_co, _VT_co]: ...

0 commit comments

Comments
 (0)