10000 gh-131885: Updates docs to make max and min iterable param positional only by ekohilas · Pull Request #131868 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-131885: Updates docs to make max and min iterable param positional only #131868

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
functions.rst for min
  • Loading branch information
ekohilas committed Apr 12, 2025
commit bd686b0f2ff23ae94f39b65d7b39533410ed7c7a
2 changes: 1 addition & 1 deletion Doc/library/functions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1258,7 +1258,7 @@ are always available. They are listed here in alphabetical order.
:ref:`typememoryview` for more information.


.. function:: min(iterable, *, key=None)
.. function:: min(iterable, /, *, key=None)
min(iterable, *, default, key=None)
min(arg1, arg2, *args, key=None)

Expand Down
0