summaryrefslogtreecommitdiffstats
path: root/Lib/importlib/_bootstrap.py
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2012-08-02 11:45:24 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2012-08-02 11:45:24 (GMT)
commitff79486bb5e353dd32fa422ff65a595a3ff1b554 (patch)
tree8f41923225164f4ea7ed5329964550863ec220dd /Lib/importlib/_bootstrap.py
parent8a9080feffc757360d0d73e4173189586098ffb5 (diff)
downloadcpython-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 'Lib/importlib/_bootstrap.py')
-rw-r--r--Lib/importlib/_bootstrap.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/importlib/_bootstrap.py b/Lib/importlib/_bootstrap.py
index 5980141..7b6ef39 100644
--- a/Lib/importlib/_bootstrap.py
+++ b/Lib/importlib/_bootstrap.py
@@ -720,9 +720,9 @@ class FrozenImporter:
return _imp.is_frozen_package(fullname)
-class WindowsRegistryImporter:
+class WindowsRegistryFinder:
- """Meta path import for modules declared in the Windows registry.
+ """Meta path finder for modules declared in the Windows registry.
"""
REGISTRY_KEY = (
@@ -1683,7 +1683,7 @@ def _setup(sys_module, _imp_module):
if builtin_os == 'nt':
SOURCE_SUFFIXES.append('.pyw')
if '_d.pyd' in _imp.extension_suffixes():
- WindowsRegistryImporter.DEBUG_BUILD = True
+ WindowsRegistryFinder.DEBUG_BUILD = True
def _install(sys_module, _imp_module):
@@ -1694,5 +1694,5 @@ def _install(sys_module, _imp_module):
sys.meta_path.append(BuiltinImporter)
sys.meta_path.append(FrozenImporter)
if _os.__name__ == 'nt':
- sys.meta_path.append(WindowsRegistryImporter)
+ sys.meta_path.append(WindowsRegistryFinder)
sys.meta_path.append(PathFinder)