summaryrefslogtreecommitdiff
path: root/Lib/importlib/abc.py
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2012-08-02 21:45:24 +1000
committerNick Coghlan <ncoghlan@gmail.com>2012-08-02 21:45:24 +1000
commit65fbf2b0e28d7d8b1436788a3bae472cdffacacd (patch)
tree85f9dd130039b3d6a52fcf3bc33a9caa09a98f36 /Lib/importlib/abc.py
parent8663ac0147af6bd29f540225d81327f62ca91409 (diff)
downloadcpython-65fbf2b0e28d7d8b1436788a3bae472cdffacacd.tar.gz
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 'Lib/importlib/abc.py')
-rw-r--r--Lib/importlib/abc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/importlib/abc.py b/Lib/importlib/abc.py
index 5e71758afc..e8a0541dc3 100644
--- a/Lib/importlib/abc.py
+++ b/Lib/importlib/abc.py
@@ -59,7 +59,7 @@ class MetaPathFinder(Finder):
raise NotImplementedError
_register(MetaPathFinder, machinery.BuiltinImporter, machinery.FrozenImporter,
- machinery.PathFinder)
+ machinery.PathFinder, machinery.WindowsRegistryFinder)
class PathEntryFinder(Finder):