diff options
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/collections.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst index dc81c0a..db9babf 100644 --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -379,6 +379,11 @@ counts, but the output will exclude results with counts of zero or less. .. versionadded:: 2.5 + .. method:: reverse() + + Reverse the elements of the deque in-place and then return ``None``. + + .. versionadded:: 2.7 .. method:: rotate(n) |