Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 865828d

Browse files
committed
Reversed min and max (to alphabetical order).
1 parent a08095a commit 865828d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Python/bltinmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -470,8 +470,8 @@ static struct methodlist builtin_methods[] = {
470470
{"input", builtin_input},
471471
{"int", builtin_int},
472472
{"len", builtin_len},
473-
{"min", builtin_min},
474473
{"max", builtin_max},
474+
{"min", builtin_min},
475475
{"open", builtin_open}, /* XXX move to OS module */
476476
{"ord", builtin_ord},
477477
{"range", builtin_range},

0 commit comments

Comments
 (0)