]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.13] gh-137985: Correct description of Formatter's datefmt param in logging documen...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Fri, 5 Sep 2025 21:32:49 +0000 (23:32 +0200)
committerGitHub <noreply@github.com>
Fri, 5 Sep 2025 21:32:49 +0000 (22:32 +0100)
(cherry picked from commit 83688950490f26d098a462569201ef8e94378852)
Co-authored-by: W. H. Wang <mattwang44@gmail.com>
Doc/library/logging.rst

index 72a526dc4d61de19f64c37feaa66d8fdde6d805f..1a90fbd8bda1095669e146e94a6894e866186a80 100644 (file)
@@ -671,8 +671,7 @@ Formatter Objects
        which is just the logged message.
    :type fmt: str
 
-   :param datefmt: A format string in the given *style* for
-       the date/time portion of the logged output.
+   :param datefmt: A format string for the date/time portion of the logged output.
        If not specified, the default described in :meth:`formatTime` is used.
    :type datefmt: str
 
@@ -680,7 +679,7 @@ Formatter Objects
        how the format string will be merged with its data: using one of
        :ref:`old-string-formatting` (``%``), :meth:`str.format` (``{``)
        or :class:`string.Template` (``$``). This only applies to
-       *fmt* and *datefmt* (e.g. ``'%(message)s'`` versus ``'{message}'``),
+       *fmt* (e.g. ``'%(message)s'`` versus ``'{message}'``),
        not to the actual log messages passed to the logging methods.
        However, there are :ref:`other ways <formatting-styles>`
        to use ``{``- and ``$``-formatting for log messages.