diff options
author | Raymond Hettinger <python@rcn.com> | 2016-08-26 04:12:16 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2016-08-26 04:12:16 (GMT) |
commit | f74c33ad5c94f1f07f574336dc2d5a6345acdcc7 (patch) | |
tree | 7de71390a5ea30877d31e56c5fabf44529c86fd2 /Python/bltinmodule.c | |
parent | 8f2ee0d5ffe82c5873bff914835724be0107b0c6 (diff) | |
parent | 7ea386e56e76deb2ceeb87c0ac4b346e24cd82e1 (diff) | |
download | cpython-f74c33ad5c94f1f07f574336dc2d5a6345acdcc7.zip cpython-f74c33ad5c94f1f07f574336dc2d5a6345acdcc7.tar.gz cpython-f74c33ad5c94f1f07f574336dc2d5a6345acdcc7.tar.bz2 |
Merge
Diffstat (limited to 'Python/bltinmodule.c')
-rw-r--r-- | Python/bltinmodule.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index bf67190..a1cd978 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -2072,7 +2072,7 @@ sorted as builtin_sorted Return a new list containing all items from the iterable in ascending order. -A custom key function can be supplied to customise the sort order, and the +A custom key function can be supplied to customize the sort order, and the reverse flag can be set to request the result in descending order. [end disabled clinic input]*/ @@ -2082,7 +2082,7 @@ PyDoc_STRVAR(builtin_sorted__doc__, "\n" "Return a new list containing all items from the iterable in ascending order.\n" "\n" -"A custom key function can be supplied to customise the sort order, and the\n" +"A custom key function can be supplied to customize the sort order, and the\n" "reverse flag can be set to request the result in descending order."); #define BUILTIN_SORTED_METHODDEF \ |