]> granicus.if.org Git - python/commitdiff
Issue #12718: Add documentation on using custom importers.
authorVinay Sajip <vinay_sajip@yahoo.co.uk>
Thu, 11 Aug 2011 12:39:52 +0000 (13:39 +0100)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>
Thu, 11 Aug 2011 12:39:52 +0000 (13:39 +0100)
Doc/library/logging.config.rst

index 500c736be3cace75766202870351600913174293..8b39be489ac5121860128fa6fa2553c3f10f1174 100644 (file)
@@ -516,6 +516,31 @@ the system will attempt to retrieve the value from
 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