8000 Update bltinmodule.c for min and max · python/cpython@6e6a18e · GitHub
[go: up one dir, main page]

Skip to content

Commit 6e6a18e

Browse files
committed
Update bltinmodule.c for min and max
1 parent adb9a1b commit 6e6a18e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Python/bltinmodule.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2019,7 +2019,7 @@ builtin_min(PyObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *k
20192019
}
20202020

20212021
PyDoc_STRVAR(min_doc,
2022-
"min(iterable, *[, default=obj, key=func]) -> value\n\
2022+
"min(iterable, /, *[, default=obj, key=func]) -> value\n\
20232023
min(arg1, arg2, *args, *[, key=func]) -> value\n\
20242024
\n\
20252025
With a single iterable argument, return its smallest item. The\n\
@@ -2036,7 +2036,7 @@ builtin_max(PyObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *k
20362036
}
20372037

20382038
PyDoc_STRVAR(max_doc,
2039-
"max(iterable, *[, default=obj, key=func]) -> value\n\
2039+
"max(iterable, /, *[, default=obj, key=func]) -> value\n\
20402040
max(arg1, arg2, *args, *[, key=func]) -> value\n\
20412041
\n\
20422042
With a single iterable argument, return its biggest item. The\n\

0 commit comments

Comments
 (0)
0