We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7595e2 commit bcf70efCopy full SHA for bcf70ef
stdlib/builtins.pyi
@@ -1303,7 +1303,7 @@ class frozenset(AbstractSet[_T_co]):
1303
def copy(self) -> frozenset[_T_co]: ...
1304
def difference(self, *s: Iterable[object]) -> frozenset[_T_co]: ...
1305
def intersection(self, *s: Iterable[object]) -> frozenset[_T_co]: ...
1306
- def isdisjoint(self, s: Iterable[_T_co], /) -> bool: ...
+ def isdisjoint(self, s: Iterable[object], /) -> bool: ...
1307
def issubset(self, s: Iterable[object], /) -> bool: ...
1308
def issuperset(self, s: Iterable[object], /) -> bool: ...
1309
def symmetric_difference(self, s: Iterable[_T_co], /) -> frozenset[_T_co]: ...
0 commit comments