diff options
author | Raymond Hettinger <python@rcn.com> | 2016-08-26 04:11:50 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2016-08-26 04:11:50 (GMT) |
commit | 7ea386e56e76deb2ceeb87c0ac4b346e24cd82e1 (patch) | |
tree | 3fb6addb93c15d15b06bc8ba7dfc37a91e560b9c /Python/bltinmodule.c | |
parent | 39e9af6bb3fdd0dd59292b5a014d398956f0b7cd (diff) | |
download | cpython-7ea386e56e76deb2ceeb87c0ac4b346e24cd82e1.zip cpython-7ea386e56e76deb2ceeb87c0ac4b346e24cd82e1.tar.gz cpython-7ea386e56e76deb2ceeb87c0ac4b346e24cd82e1.tar.bz2 |
Issue 19504: Change "customise" to "customize" American spelling.
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 eedd7c3..9e35eb2 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -2068,7 +2068,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]*/ @@ -2078,7 +2078,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 \ |