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 f025ae63dc)

Co-authored-by: Vivek Vashist <vivekvashist@gmail.com>
This commit is contained in:
Miss Islington (bot) 2021-12-15 04:59:01 -08:00 committed by GitHub
parent 8e4c96295b
commit c8044777cf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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*.