aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/importlib/machinery.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
commitff79486bb5e353dd32fa422ff65a595a3ff1b554 (patch)
tree8f41923225164f4ea7ed5329964550863ec220dd /Lib/importlib/machinery.py
parent8a9080feffc757360d0d73e4173189586098ffb5 (diff)
downloadcpython-ff79486bb5e353dd32fa422ff65a595a3ff1b554.tar.gz
cpython-ff79486bb5e353dd32fa422ff65a595a3ff1b554.zip
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/machinery.py')
-rw-r--r--Lib/importlib/machinery.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/importlib/machinery.py b/Lib/importlib/machinery.py
index 3fe0b110175..fed6f2c12a1 100644
--- a/Lib/importlib/machinery.py
+++ b/Lib/importlib/machinery.py
@@ -6,6 +6,7 @@ from ._bootstrap import (SOURCE_SUFFIXES, DEBUG_BYTECODE_SUFFIXES,
OPTIMIZED_BYTECODE_SUFFIXES, BYTECODE_SUFFIXES)
from ._bootstrap import BuiltinImporter
from ._bootstrap import FrozenImporter
+from ._bootstrap import WindowsRegistryFinder
from ._bootstrap import PathFinder
from ._bootstrap import FileFinder
from ._bootstrap import SourceFileLoader