Home
last modified time | relevance | path

Searched refs:dictConfig (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython2/Doc/library/
Dlogging.config.rst37 .. function:: dictConfig(config)
65 :func:`dictConfig` calls :attr:`dictConfigClass` passing
69 def dictConfig(config):
76 this new subclass, and then :func:`dictConfig` could be called exactly as
163 The dictionary passed to :func:`dictConfig` must contain the following
591 The :func:`fileConfig` API is older than the :func:`dictConfig` API and does
596 configuration, you will need to use :func:`dictConfig`. Note that future
598 :func:`dictConfig`, so it's worth considering transitioning to this newer
/external/python/cpython2/Doc/howto/
Dlogging-cookbook.rst710 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 without
921 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.3
1029 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 it
1094 logging.config.dictConfig(LOGGING)
[all …]
Dlogging.rst560 to the :func:`dictConfig` function.
676 The dictionary passed to :func:`dictConfig` can also specify a Boolean
/external/python/cpython2/Lib/logging/
Dconfig.py792 def dictConfig(config): function
838 dictConfig(d)
/external/python/cpython2/Lib/test/
Dtest_logging.py1665 logging.config.dictConfig(conf)
/external/python/cpython2/Doc/whatsnew/
D2.7.rst462 Python 2.7 adds a :func:`~logging.dictConfig` function that
509 logging.config.dictConfig(configdict)
/external/python/cpython2/Misc/
DNEWS3333 - Issue #17508: Corrected MemoryHandler configuration in dictConfig() where