[Python-checkins] gh-84095: Fill documentation gap regarding user-defined objects. (GH-96574)

vsajip webhook-mailer at python.org
Mon Sep 5 02:47:55 EDT 2022


https://github.com/python/cpython/commit/a9d58feccfd956dc99195af6872b06446738d7db
commit: a9d58feccfd956dc99195af6872b06446738d7db
branch: main
author: Vinay Sajip <vinay_sajip at yahoo.co.uk>
committer: vsajip <vinay_sajip at yahoo.co.uk>
date: 2022-09-05T07:47:47+01:00
summary:

gh-84095: Fill documentation gap regarding user-defined objects. (GH-96574)

files:
M Doc/library/logging.config.rst

diff --git a/Doc/library/logging.config.rst b/Doc/library/logging.config.rst
index 9f9361a2fd5..9b82c1f75e3 100644
--- a/Doc/library/logging.config.rst
+++ b/Doc/library/logging.config.rst
@@ -534,6 +534,25 @@ mnemonic that the corresponding value is a callable.
        The ``filters`` member of ``handlers`` and ``loggers`` can take
        filter instances in addition to ids.
 
+You can also specify a special key ``'.'`` whose value is a dictionary is a
+mapping of attribute names to values. If found, the specified attributes will
+be set on the user-defined object before it is returned. Thus, with the
+following configuration::
+
+    {
+      '()' : 'my.package.customFormatterFactory',
+      'bar' : 'baz',
+      'spam' : 99.9,
+      'answer' : 42,
+      '.' {
+        'foo': 'bar',
+        'baz': 'bozz'
+      }
+    }
+
+the returned formatter will have attribute ``foo`` set to ``'bar'`` and
+attribute ``baz`` set to ``'bozz'``.
+
 
 .. _logging-config-dict-externalobj:
 



More information about the Python-checkins mailing list