mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-16 00:37:10 +08:00
builtins: Reversible is redundant when Sequence is already present
This has been true for a while with our Python 3 typing.pyi, and just became true with the Python 2 typing.pyi in the last commit.
This commit is contained in:
@@ -464,7 +464,7 @@ class function:
|
||||
__name__ = ... # type: str
|
||||
__module__ = ... # type: str
|
||||
|
||||
class list(MutableSequence[_T], Reversible[_T], Generic[_T]):
|
||||
class list(MutableSequence[_T], Generic[_T]):
|
||||
@overload
|
||||
def __init__(self) -> None: ...
|
||||
@overload
|
||||
|
||||
Reference in New Issue
Block a user