mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 21:46:42 +08:00
add BaseListProxy.__imul__ (#13266)
This commit is contained in:
@@ -129,6 +129,7 @@ class BaseListProxy(BaseProxy, MutableSequence[_T]):
|
||||
def __setitem__(self, s: slice, o: Iterable[_T], /) -> None: ...
|
||||
def __mul__(self, n: SupportsIndex, /) -> list[_T]: ...
|
||||
def __rmul__(self, n: SupportsIndex, /) -> list[_T]: ...
|
||||
def __imul__(self, value: SupportsIndex, /) -> Self: ...
|
||||
def __reversed__(self) -> Iterator[_T]: ...
|
||||
def append(self, object: _T, /) -> None: ...
|
||||
def extend(self, iterable: Iterable[_T], /) -> None: ...
|
||||
|
||||
Reference in New Issue
Block a user