mark deque.rotate arg as having a default (#4386)

This commit is contained in:
Adam Hitchcock
2020-08-05 17:35:22 -07:00
committed by GitHub
parent dc0bfc5889
commit 3b6925b955
2 changed files with 2 additions and 2 deletions

View File

@@ -216,7 +216,7 @@ class deque(MutableSequence[_T], Generic[_T]):
def popleft(self) -> _T: ...
def remove(self, value: _T) -> None: ...
def reverse(self) -> None: ...
def rotate(self, n: int) -> None: ...
def rotate(self, n: int = ...) -> None: ...
def __len__(self) -> int: ...
def __iter__(self) -> Iterator[_T]: ...
def __str__(self) -> str: ...