add BaseListProxy.__imul__ (#13266)

This commit is contained in:
Stephen Morton
2024-12-19 16:04:00 -08:00
committed by GitHub
parent e7a9b83ee7
commit 8e31597fa5
2 changed files with 1 additions and 1 deletions

View File

@@ -394,7 +394,6 @@ multiprocessing.dummy.RLock
# These multiprocessing proxy methods have *args, **kwargs signatures at runtime,
# But have more precise (accurate) signatures in the stub
multiprocessing.managers.BaseListProxy.__imul__
multiprocessing.managers.BaseListProxy.__len__
multiprocessing.managers.BaseListProxy.__reversed__
multiprocessing.managers.BaseListProxy.reverse

View File

@@ -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: ...