[Python-checkins] Add Positional only arguments forward slash (/) to sorted() function in Built-in Functions document (GH-30113)

miss-islington webhook-mailer at python.org
Wed Dec 15 07:59:18 EST 2021


https://github.com/python/cpython/commit/c8044777cf8c4e9bf05d1ab69fd4005089709147
commit: c8044777cf8c4e9bf05d1ab69fd4005089709147
branch: 3.10
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2021-12-15T04:59:01-08:00
summary:

Add Positional only arguments forward slash (/) to sorted() function in Built-in Functions document (GH-30113)


sorted() function is missing forward slash (/) in Built-in Functions documentation page.

Automerge-Triggered-By: GH:asvetlov
(cherry picked from commit f025ae63dccf96c4a1d781a6438bd9ed1502f0a1)

Co-authored-by: Vivek Vashist <vivekvashist at gmail.com>

files:
M Doc/library/functions.rst

diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst
index a117d30c0b0d5..9a9c87e32013c 100644
--- a/Doc/library/functions.rst
+++ b/Doc/library/functions.rst
@@ -1582,7 +1582,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=None, reverse=False)
+.. function:: sorted(iterable, /, *, key=None, reverse=False)
 
    Return a new sorted list from the items in *iterable*.
 



More information about the Python-checkins mailing list