Skip to content

Commit 5b73d71

Browse files
authored
commit 15
1 parent f6d11b8 commit 5b73d71

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

stdlib/_weakrefset.pyi

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,18 +31,18 @@ class WeakSet(MutableSet[_T]):
3131
def __and__(self, other: Iterable[Any]) -> Self: ...
3232
def intersection_update(self, other: Iterable[Any]) -> None: ...
3333
def __iand__(self, other: Iterable[Any]) -> Self: ...
34-
def issubset(self, other: Iterable[_T]) -> bool: ...
35-
def __le__(self, other: Iterable[_T]) -> bool: ...
36-
def __lt__(self, other: Iterable[_T]) -> bool: ...
37-
def issuperset(self, other: Iterable[_T]) -> bool: ...
38-
def __ge__(self, other: Iterable[_T]) -> bool: ...
39-
def __gt__(self, other: Iterable[_T]) -> bool: ...
34+
def issubset(self, other: Iterable[Any]) -> bool: ...
35+
def __le__(self, other: Iterable[Any]) -> bool: ...
36+
def __lt__(self, other: Iterable[Any]) -> bool: ...
37+
def issuperset(self, other: Iterable[Any]) -> bool: ...
38+
def __ge__(self, other: Iterable[Any]) -> bool: ...
39+
def __gt__(self, other: Iterable[Any]) -> bool: ...
4040
def __eq__(self, other: object) -> bool: ...
4141
def symmetric_difference(self, other: Iterable[_S]) -> WeakSet[_S | _T]: ...
4242
def __xor__(self, other: Iterable[_S]) -> WeakSet[_S | _T]: ...
4343
def symmetric_difference_update(self, other: Iterable[_T]) -> None: ...
4444
def __ixor__(self, other: Iterable[_T]) -> Self: ... # type: ignore[override,misc]
4545
def union(self, other: Iterable[_S]) -> WeakSet[_S | _T]: ...
4646
def __or__(self, other: Iterable[_S]) -> WeakSet[_S | _T]: ...
47-
def isdisjoint(self, other: Iterable[_T]) -> bool: ...
47+
def isdisjoint(self, other: Iterable[Any]) -> bool: ...
4848
def __class_getitem__(cls, item: Any, /) -> GenericAlias: ...

0 commit comments

Comments
 (0)