set difference strictly (#3886)

Fixes #1840
This commit is contained in:
proost
2020-09-18 00:49:07 +09:00
committed by GitHub
parent 98667b18c2
commit b1865639c2
2 changed files with 4 additions and 4 deletions

View File

@@ -1077,8 +1077,8 @@ class set(MutableSet[_T], Generic[_T]):
def __iand__(self, s: AbstractSet[object]) -> Set[_T]: ...
def __or__(self, s: AbstractSet[_S]) -> Set[Union[_T, _S]]: ...
def __ior__(self, s: AbstractSet[_S]) -> Set[Union[_T, _S]]: ...
def __sub__(self, s: AbstractSet[object]) -> Set[_T]: ...
def __isub__(self, s: AbstractSet[object]) -> Set[_T]: ...
def __sub__(self, s: AbstractSet[_T]) -> Set[_T]: ...
def __isub__(self, s: AbstractSet[_T]) -> Set[_T]: ...
def __xor__(self, s: AbstractSet[_S]) -> Set[Union[_T, _S]]: ...
def __ixor__(self, s: AbstractSet[_S]) -> Set[Union[_T, _S]]: ...
def __le__(self, s: AbstractSet[object]) -> bool: ...