summaryrefslogtreecommitdiff
path: root/Doc/library/logging.config.rst
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-06-01 10:55:10 -0700
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2018-06-01 18:55:10 +0100
commit461ad598d12eba7754181402e00bb7cfc7f1d9cf (patch)
tree6a59de9b72468505d53206a9a79aca278c23e069 /Doc/library/logging.config.rst
parent64e538bc703e423a04ab435c4eab6b950b8aef7e (diff)
downloadcpython-git-461ad598d12eba7754181402e00bb7cfc7f1d9cf.tar.gz
bpo-33400: Removed references to RFC3339 and ISO8601 from the logging documentation. (GH-7297) (GH-7303)
(cherry picked from commit 23cee80cfade1a9019c52b3a17d8e5c1b5db17e2) Co-authored-by: Vinay Sajip <vinay_sajip@yahoo.co.uk>
Diffstat (limited to 'Doc/library/logging.config.rst')
-rw-r--r--Doc/library/logging.config.rst9
1 files changed, 4 insertions, 5 deletions
diff --git a/Doc/library/logging.config.rst b/Doc/library/logging.config.rst
index 5f5ea03362..bf3f375685 100644
--- a/Doc/library/logging.config.rst
+++ b/Doc/library/logging.config.rst
@@ -783,11 +783,10 @@ Sections which specify formatter configuration are typified by the following.
The ``format`` entry is the overall format string, and the ``datefmt`` entry is
the :func:`strftime`\ -compatible date/time format string. If empty, the
-package substitutes ISO8601-style format date/times, which is almost equivalent to
-specifying the date format string ``'%Y-%m-%d %H:%M:%S'``. This format also
-specifies milliseconds, which are appended to the result of using the above
-format string, with a comma separator. An example time in this format is
-``2003-01-23 00:29:50,411``.
+package substitutes something which is almost equivalent to specifying the date
+format string ``'%Y-%m-%d %H:%M:%S'``. This format also specifies milliseconds,
+which are appended to the result of using the above format string, with a comma
+separator. An example time in this format is ``2003-01-23 00:29:50,411``.
The ``class`` entry is optional. It indicates the name of the formatter's class
(as a dotted module and class name.) This option is useful for instantiating a