Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Doc/library/importlib.rst
Original file line number Diff line number Diff line change
Expand Up @@ -799,7 +799,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.
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Update documentation to clarify that ``WindowsRegistryFinder`` implements
``MetaPathFinder``. (Patch by Himanshu Lakhara)