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 398a580 commit 9a257c1Copy full SHA for 9a257c1
stdlib/typing.pyi
@@ -371,6 +371,7 @@ class MutableSequence(Sequence[_T], Generic[_T]):
371
class AbstractSet(Collection[_T_co], Generic[_T_co]):
372
@abstractmethod
373
def __contains__(self, x: object) -> bool: ...
374
+ def _hash(self) -> int: ...
375
# Mixin methods
376
def __le__(self, s: AbstractSet[Any]) -> bool: ...
377
def __lt__(self, s: AbstractSet[Any]) -> bool: ...
0 commit comments