summaryrefslogtreecommitdiff
path: root/Doc/whatsnew/2.0.rst
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2016-08-25 21:11:50 -0700
committerRaymond Hettinger <python@rcn.com>2016-08-25 21:11:50 -0700
commit45851bf953d25ba9dc728ef1723da324dfad9433 (patch)
tree3b0ef1e208b1efc8380265d08cb7ed6a748c93b4 /Doc/whatsnew/2.0.rst
parentf1729dcb365855878c7aaf0f8ca057baab88fd0e (diff)
downloadcpython-45851bf953d25ba9dc728ef1723da324dfad9433.tar.gz
Issue 19504: Change "customise" to "customize" American spelling.
Diffstat (limited to 'Doc/whatsnew/2.0.rst')
-rw-r--r--Doc/whatsnew/2.0.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/whatsnew/2.0.rst b/Doc/whatsnew/2.0.rst
index 4d49af1475..5bd12ba8b0 100644
--- a/Doc/whatsnew/2.0.rst
+++ b/Doc/whatsnew/2.0.rst
@@ -166,7 +166,7 @@ encoding. Encodings are named by strings, such as ``'ascii'``, ``'utf-8'``,
registering new encodings that are then available throughout a Python program.
If an encoding isn't specified, the default encoding is usually 7-bit ASCII,
though it can be changed for your Python installation by calling the
-``sys.setdefaultencoding(encoding)`` function in a customised version of
+``sys.setdefaultencoding(encoding)`` function in a customized version of
:file:`site.py`.
Combining 8-bit and Unicode strings always coerces to Unicode, using the default
@@ -1139,7 +1139,7 @@ module.
Unix, not to be confused with :program:`gzip`\ -format files (which are
supported by the :mod:`gzip` module) (Contributed by James C. Ahlstrom.)
-* :mod:`imputil`: A module that provides a simpler way for writing customised
+* :mod:`imputil`: A module that provides a simpler way for writing customized
import hooks, in comparison to the existing :mod:`ihooks` module. (Implemented
by Greg Stein, with much discussion on python-dev along the way.)