Searched refs:dictConfig (Results 1 – 7 of 7) sorted by relevance
37 .. function:: dictConfig(config)65 :func:`dictConfig` calls :attr:`dictConfigClass` passing69 def dictConfig(config):76 this new subclass, and then :func:`dictConfig` could be called exactly as163 The dictionary passed to :func:`dictConfig` must contain the following591 The :func:`fileConfig` API is older than the :func:`dictConfig` API and does596 configuration, you will need to use :func:`dictConfig`. Note that future598 :func:`dictConfig`, so it's worth considering transitioning to this newer
710 This dictionary is passed to :func:`~config.dictConfig` to put the configuration into effect::899 Customizing handlers with :func:`dictConfig`903 and if you use :func:`dictConfig` you may be able to do this without921 You can then specify, in a logging configuration passed to :func:`dictConfig`,997 logging.config.dictConfig(LOGGING)1013 supports :func:`dictConfig` - namely, Python 2.7, 3.2 or later. With pre-3.31029 is resolved by :func:`dictConfig` from the ``ext://`` specification.1042 Configuring filters with :func:`dictConfig`1045 You *can* configure filters using :func:`~logging.config.dictConfig`, though it1094 logging.config.dictConfig(LOGGING)[all …]
560 to the :func:`dictConfig` function.676 The dictionary passed to :func:`dictConfig` can also specify a Boolean
792 def dictConfig(config): function838 dictConfig(d)
1665 logging.config.dictConfig(conf)
462 Python 2.7 adds a :func:`~logging.dictConfig` function that509 logging.config.dictConfig(configdict)
3333 - Issue #17508: Corrected MemoryHandler configuration in dictConfig() where