Browse Source

Type hint support for slices and __index__ in SequenceProxy

pull/8975/head
Jakub Kuczys 3 years ago
committed by GitHub
parent
commit
d2c6a32543
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 11
      discord/utils.py

11
discord/utils.py

@ -46,6 +46,7 @@ from typing import (
Protocol,
Set,
Sequence,
SupportsIndex,
Tuple,
Type,
TypeVar,
@ -227,7 +228,15 @@ class SequenceProxy(Sequence[T_co]):
def __repr__(self) -> str:
return f"SequenceProxy({self.__proxied!r})"
def __getitem__(self, idx: int) -> T_co:
@overload
def __getitem__(self, idx: SupportsIndex) -> T_co:
...
@overload
def __getitem__(self, idx: slice) -> List[T_co]:
...
def __getitem__(self, idx: Union[SupportsIndex, slice]) -> Union[T_co, List[T_co]]:
return self.__copied[idx]
def __len__(self) -> int:

Loading…
Cancel
Save