fix some TODOs (#1994)

- Made deque.maxlen read-only
- We don't support 3.2, so we don't care about signature changes in it
- There don't seem to be any missing set operations (I compared the dir() of this class to that of builtins.set)
This commit is contained in:
Jelle Zijlstra
2018-03-28 18:40:13 -07:00
committed by GitHub
parent a62c6be905
commit 103056eecf
3 changed files with 2 additions and 6 deletions

View File

@@ -653,7 +653,6 @@ class set(MutableSet[_T], Generic[_T]):
def __lt__(self, s: AbstractSet[object]) -> bool: ...
def __ge__(self, s: AbstractSet[object]) -> bool: ...
def __gt__(self, s: AbstractSet[object]) -> bool: ...
# TODO more set operations
class frozenset(AbstractSet[_T], Generic[_T]):
@overload