diff options
author | Ćukasz Rogalski <rogalski.91@gmail.com> | 2017-07-14 19:23:39 (GMT) |
---|---|---|
committer | R. David Murray <rdmurray@bitdance.com> | 2017-07-14 19:23:39 (GMT) |
commit | be37beb05f5f2cff18e41440453e79aa17b239f9 (patch) | |
tree | 43e82151c2ff2e13805c74f9aaea426626f1f515 /Doc | |
parent | 0d0a32fb91cdfea1626e6c6b77a9bc44e15a2b8a (diff) | |
download | cpython-be37beb05f5f2cff18e41440453e79aa17b239f9.zip cpython-be37beb05f5f2cff18e41440453e79aa17b239f9.tar.gz cpython-be37beb05f5f2cff18e41440453e79aa17b239f9.tar.bz2 |
Doc that 'sorted' args are keyword-only, fix 'reverse' default (#2706)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/functions.rst | 2 | ||||
-rw-r--r-- | Doc/library/stdtypes.rst | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index 4e48e42..015231d 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -1361,7 +1361,7 @@ are always available. They are listed here in alphabetical order. :func:`itertools.islice` for an alternate version that returns an iterator. -.. function:: sorted(iterable[, key][, reverse]) +.. function:: sorted(iterable, *, key=None, reverse=False) Return a new sorted list from the items in *iterable*. diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index e0691c7..564579e 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -1161,7 +1161,7 @@ application). :ref:`mutable <typesseq-mutable>` sequence operations. Lists also provide the following additional method: - .. method:: list.sort(*, key=None, reverse=None) + .. method:: list.sort(*, key=None, reverse=False) This method sorts the list in place, using only ``<`` comparisons between items. Exceptions are not suppressed - if any comparison operations |