Skip to content

Commit d0d2a7e

Browse files
[collections] Add deque.__rmul__ (#16055)
1 parent 5ab38d6 commit d0d2a7e

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

stdlib/collections/__init__.pyi

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -277,6 +277,7 @@ class deque(MutableSequence[_T]):
277277
def __iadd__(self, value: Iterable[_T], /) -> Self: ...
278278
def __add__(self, value: Self, /) -> Self: ...
279279
def __mul__(self, value: int, /) -> Self: ...
280+
def __rmul__(self, value: int, /) -> Self: ...
280281
def __imul__(self, value: int, /) -> Self: ...
281282
def __lt__(self, value: deque[_T], /) -> bool: ...
282283
def __le__(self, value: deque[_T], /) -> bool: ...

0 commit comments

Comments
 (0)