summaryrefslogtreecommitdiffstats
path: root/Doc/library/logging.rst
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2015-11-24 23:22:48 (GMT)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2015-11-24 23:22:48 (GMT)
commit46cc4a8f320d252c12edeeaae1f0ac87b155399d (patch)
treeb65bcb421c7d913fd5ac9b3813e209114d44a375 /Doc/library/logging.rst
parentf7e8d07538a1734bdb0438ab53e0a54db456d4d9 (diff)
parent4f44d53770c42818a4d8ca4036e2602fff3a7c88 (diff)
downloadcpython-46cc4a8f320d252c12edeeaae1f0ac87b155399d.zip
cpython-46cc4a8f320d252c12edeeaae1f0ac87b155399d.tar.gz
cpython-46cc4a8f320d252c12edeeaae1f0ac87b155399d.tar.bz2
Issue #25508: Merged documentation fix from 3.4.
Diffstat (limited to 'Doc/library/logging.rst')
-rw-r--r--Doc/library/logging.rst4
1 files changed, 3 insertions, 1 deletions
diff --git a/Doc/library/logging.rst b/Doc/library/logging.rst
index bf821ab..5bc72f7 100644
--- a/Doc/library/logging.rst
+++ b/Doc/library/logging.rst
@@ -743,7 +743,9 @@ the options available to you.
| Attribute name | Format | Description |
+================+=========================+===============================================+
| args | You shouldn't need to | The tuple of arguments merged into ``msg`` to |
-| | format this yourself. | produce ``message``. |
+| | format this yourself. | produce ``message``, or a dict whose values |
+| | | are used for the merge (when there is only one|
+| | | argument, and it is a dictionary). |
+----------------+-------------------------+-----------------------------------------------+
| asctime | ``%(asctime)s`` | Human-readable time when the |
| | | :class:`LogRecord` was created. By default |