[Python-checkins] cpython (merge 3.2 -> default): Closes #12718: Merge documentation fix from 3.2.

vinay.sajip python-checkins at python.org
Thu Aug 11 14:47:09 CEST 2011


http://hg.python.org/cpython/rev/76964d70c81c
changeset: 71815:76964d70c81c
parent: 71812:5b2455d6cfe9
parent: 71814:1e96a4406565
user: Vinay Sajip <vinay_sajip at yahoo.co.uk>
date: Thu Aug 11 13:46:54 2011 +0100
summary:
 Closes #12718: Merge documentation fix from 3.2.
files:
 Doc/library/logging.config.rst | 25 ++++++++++++++++++++++
 1 files changed, 25 insertions(+), 0 deletions(-)
diff --git a/Doc/library/logging.config.rst b/Doc/library/logging.config.rst
--- a/Doc/library/logging.config.rst
+++ b/Doc/library/logging.config.rst
@@ -513,6 +513,31 @@
 to ``config_dict['handlers']['myhandler']['mykey']['123']`` if that
 fails.
 
+
+.. _logging-import-resolution:
+
+Import resolution and custom importers
+""""""""""""""""""""""""""""""""""""""
+
+Import resolution, by default, uses the builtin :func:`__import__` function
+to do its importing. You may want to replace this with your own importing
+mechanism: if so, you can replace the :attr:`importer` attribute of the
+:class:`DictConfigurator` or its superclass, the
+:class:`BaseConfigurator` class. However, you need to be
+careful because of the way functions are accessed from classes via
+descriptors. If you are using a Python callable to do your imports, and you
+want to define it at class level rather than instance level, you need to wrap
+it with :func:`staticmethod`. For example::
+
+ from importlib import import_module
+ from logging.config import BaseConfigurator
+
+ BaseConfigurator.importer = staticmethod(import_module)
+
+You don't need to wrap with :func:`staticmethod` if you're setting the import
+callable on a configurator *instance*.
+
+
 .. _logging-config-fileformat:
 
 Configuration file format
-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list

AltStyle によって変換されたページ (->オリジナル) /