diff options
author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2020-04-17 18:02:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-17 17:02:47 +0100 |
commit | 06a35542aad15666cace307d841a95e33f3cbee6 (patch) | |
tree | 1181345efbb9ba1fcbdac907ff8e6598ce10243c /Doc/library | |
parent | 1ae035b7e847064d09df01ca62b8a761e9b5aae3 (diff) | |
download | cpython-git-06a35542aad15666cace307d841a95e33f3cbee6.tar.gz |
bpo-40300: Allow empty logging.Formatter.default_msec_format. (GH-19551)
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/logging.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/library/logging.rst b/Doc/library/logging.rst index e943011c8a..7267f812cc 100644 --- a/Doc/library/logging.rst +++ b/Doc/library/logging.rst @@ -608,6 +608,9 @@ The useful mapping keys in a :class:`LogRecord` are given in the section on attributes are ``default_time_format`` (for the strptime format string) and ``default_msec_format`` (for appending the millisecond value). + .. versionchanged:: 3.9 + The ``default_msec_format`` can be ``None``. + .. method:: formatException(exc_info) Formats the specified exception information (a standard exception tuple as |