diff options
author | Himanshu Lakhara <himanshulakhara1947@gmail.com> | 2018-03-23 21:26:35 (GMT) |
---|---|---|
committer | Brett Cannon <brettcannon@users.noreply.github.com> | 2018-03-23 21:26:35 (GMT) |
commit | 5cbb84106efefd200933aa31e22abf39267d2557 (patch) | |
tree | f74d1dd98a308896237365b3db7a7c3a9350ffb2 /Doc | |
parent | 8bcfa02e4b1b65634e526e197588bc600674c80b (diff) | |
download | cpython-5cbb84106efefd200933aa31e22abf39267d2557.zip cpython-5cbb84106efefd200933aa31e22abf39267d2557.tar.gz cpython-5cbb84106efefd200933aa31e22abf39267d2557.tar.bz2 |
bpo-27428: Fix WindowsRegistryFinder documentation to list appropriate ABC (GH-6061)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/importlib.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/importlib.rst b/Doc/library/importlib.rst index db75f69..f9387c0 100644 --- a/Doc/library/importlib.rst +++ b/Doc/library/importlib.rst @@ -1030,7 +1030,7 @@ find and load modules. .. class:: WindowsRegistryFinder :term:`Finder` for modules declared in the Windows registry. This class - implements the :class:`importlib.abc.Finder` ABC. + implements the :class:`importlib.abc.MetaPathFinder` ABC. Only class methods are defined by this class to alleviate the need for instantiation. |