diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2013-11-15 20:58:13 (GMT) |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2013-11-15 20:58:13 (GMT) |
commit | 9c10d6b8000e445093e73c295ad87b5e081902f7 (patch) | |
tree | c7e73f05a8a906f025f18fbd1ef21a5b1d688e1b /Doc/library | |
parent | a76157dca6ba0d063a88cf4c0b6ac132881001b1 (diff) | |
download | cpython-9c10d6b8000e445093e73c295ad87b5e081902f7.zip cpython-9c10d6b8000e445093e73c295ad87b5e081902f7.tar.gz cpython-9c10d6b8000e445093e73c295ad87b5e081902f7.tar.bz2 |
Issue #19504: Used American spelling for 'customize'.
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/logging.handlers.rst | 2 | ||||
-rw-r--r-- | Doc/library/logging.rst | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/logging.handlers.rst b/Doc/library/logging.handlers.rst index 81addb3..d0dc572 100644 --- a/Doc/library/logging.handlers.rst +++ b/Doc/library/logging.handlers.rst @@ -892,7 +892,7 @@ possible, while any potentially slow operations (such as sending an email via Enqueues the record on the queue using ``put_nowait()``; you may want to override this if you want to use blocking behaviour, or a - timeout, or a customised queue implementation. + timeout, or a customized queue implementation. diff --git a/Doc/library/logging.rst b/Doc/library/logging.rst index fc5f805..e9df25e 100644 --- a/Doc/library/logging.rst +++ b/Doc/library/logging.rst @@ -845,8 +845,8 @@ functions. Return either the standard :class:`Logger` class, or the last class passed to :func:`setLoggerClass`. This function may be called from within a new class - definition, to ensure that installing a customised :class:`Logger` class will - not undo customisations already applied by other code. For example:: + definition, to ensure that installing a customized :class:`Logger` class will + not undo customizations already applied by other code. For example:: class MyLogger(logging.getLoggerClass()): # ... override behaviour here |