summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2015-11-24 23:24:17 +0000
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2015-11-24 23:24:17 +0000
commite5beb3da00d4d66d9af70eb97540e4f853d3f0d9 (patch)
tree9b8932e29c6cdbd4f21b44466ad0ae4f53b62493
parentf65dd1d4db088ab2a12430f1b6d43e8f1ed04e18 (diff)
parent46cc4a8f320d252c12edeeaae1f0ac87b155399d (diff)
downloadcpython-git-e5beb3da00d4d66d9af70eb97540e4f853d3f0d9.tar.gz
Closes #25508: Merged documentation fix from 3.5.
-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 bf821abac1..5bc72f72af 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 |