diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2012-08-02 11:45:24 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2012-08-02 11:45:24 (GMT) |
commit | ff79486bb5e353dd32fa422ff65a595a3ff1b554 (patch) | |
tree | 8f41923225164f4ea7ed5329964550863ec220dd /Doc | |
parent | 8a9080feffc757360d0d73e4173189586098ffb5 (diff) | |
download | cpython-ff79486bb5e353dd32fa422ff65a595a3ff1b554.zip cpython-ff79486bb5e353dd32fa422ff65a595a3ff1b554.tar.gz cpython-ff79486bb5e353dd32fa422ff65a595a3ff1b554.tar.bz2 |
Close #15519: Properly expose WindowsRegistryFinder in importlib and bring the name into line with normal import terminology. Original patch by Eric Snow
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/importlib.rst | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Doc/library/importlib.rst b/Doc/library/importlib.rst index 49ad46f..06d997f 100644 --- a/Doc/library/importlib.rst +++ b/Doc/library/importlib.rst @@ -603,6 +603,17 @@ find and load modules. instantiation. +.. class:: WindowsRegistryFinder + + :term:`Finder` for modules declared in the Windows registry. This class + implements the :class:`importlib.abc.MetaPathFinder` ABC. + + Only class methods are defined by this class to alleviate the need for + instantiation. + + .. versionadded:: 3.3 + + .. class:: PathFinder :term:`Finder` for :data:`sys.path`. This class implements the |