summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/functions.rst4
1 files changed, 1 insertions, 3 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst
index df3e16c..18e8270 100644
--- a/Doc/library/functions.rst
+++ b/Doc/library/functions.rst
@@ -979,9 +979,7 @@ available. They are listed here in alphabetical order.
Return a new sorted list from the items in *iterable*.
- The optional arguments *key* and *reverse* have the same meaning as
- those for the :meth:`list.sort` method (described in section
- :ref:`typesseq-mutable`).
+ Has two optional arguments which must be specified as keyword arguments.
*key* specifies a function of one argument that is used to extract a comparison
key from each list element: ``key=str.lower``. The default value is ``None``.