mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-23 19:41:51 +08:00
Improve in-place BinOp methods for sets (#7161)
This commit is contained in:
@@ -20,15 +20,15 @@ class WeakSet(MutableSet[_T], Generic[_T]):
|
||||
def __contains__(self, item: object) -> bool: ...
|
||||
def __len__(self) -> int: ...
|
||||
def __iter__(self) -> Iterator[_T]: ...
|
||||
def __ior__(self, other: Iterable[_S]) -> WeakSet[_S | _T]: ...
|
||||
def __ior__(self: Self, other: Iterable[_T]) -> Self: ... # type: ignore[override,misc]
|
||||
def difference(self: Self, other: Iterable[_T]) -> Self: ...
|
||||
def __sub__(self: Self, other: Iterable[_T]) -> Self: ...
|
||||
def difference_update(self, other: Iterable[_T]) -> None: ...
|
||||
def __isub__(self: Self, other: Iterable[_T]) -> Self: ...
|
||||
def __sub__(self: Self, other: Iterable[Any]) -> Self: ...
|
||||
def difference_update(self, other: Iterable[Any]) -> None: ...
|
||||
def __isub__(self: Self, other: Iterable[Any]) -> Self: ...
|
||||
def intersection(self: Self, other: Iterable[_T]) -> Self: ...
|
||||
def __and__(self: Self, other: Iterable[_T]) -> Self: ...
|
||||
def intersection_update(self, other: Iterable[_T]) -> None: ...
|
||||
def __iand__(self: Self, other: Iterable[_T]) -> Self: ...
|
||||
def __and__(self: Self, other: Iterable[Any]) -> Self: ...
|
||||
def intersection_update(self, other: Iterable[Any]) -> None: ...
|
||||
def __iand__(self: Self, other: Iterable[Any]) -> Self: ...
|
||||
def issubset(self, other: Iterable[_T]) -> bool: ...
|
||||
def __le__(self, other: Iterable[_T]) -> bool: ...
|
||||
def __lt__(self, other: Iterable[_T]) -> bool: ...
|
||||
@@ -38,8 +38,8 @@ class WeakSet(MutableSet[_T], Generic[_T]):
|
||||
def __eq__(self, other: object) -> bool: ...
|
||||
def symmetric_difference(self, other: Iterable[_S]) -> WeakSet[_S | _T]: ...
|
||||
def __xor__(self, other: Iterable[_S]) -> WeakSet[_S | _T]: ...
|
||||
def symmetric_difference_update(self, other: Iterable[Any]) -> None: ...
|
||||
def __ixor__(self, other: Iterable[_S]) -> WeakSet[_S | _T]: ...
|
||||
def symmetric_difference_update(self, other: Iterable[_T]) -> None: ...
|
||||
def __ixor__(self: Self, other: Iterable[_T]) -> Self: ... # type: ignore[override,misc]
|
||||
def union(self, other: Iterable[_S]) -> WeakSet[_S | _T]: ...
|
||||
def __or__(self, other: Iterable[_S]) -> WeakSet[_S | _T]: ...
|
||||
def isdisjoint(self, other: Iterable[_T]) -> bool: ...
|
||||
|
||||
Reference in New Issue
Block a user