summaryrefslogtreecommitdiff
path: root/Lib/importlib/machinery.py
diff options
context:
space:
mode:
authorMarc-Andre Lemburg <mal@egenix.com>2012-04-25 02:11:07 +0200
committerMarc-Andre Lemburg <mal@egenix.com>2012-04-25 02:11:07 +0200
commitd638c912a438960f97d3990db86388e72a08cb77 (patch)
tree553fccc0f370f0ad361ac4f85f0c2ca9bc06d346 /Lib/importlib/machinery.py
parentfaa2bc2faf5d48e957c7737e85888abb9c6bd639 (diff)
downloadcpython-d638c912a438960f97d3990db86388e72a08cb77.tar.gz
Issue #14605: Revert renaming of _SourcelessFileLoader, since it caused
the buildbots to fail.
Diffstat (limited to 'Lib/importlib/machinery.py')
-rw-r--r--Lib/importlib/machinery.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/importlib/machinery.py b/Lib/importlib/machinery.py
index 07465ced68..c9906c7acc 100644
--- a/Lib/importlib/machinery.py
+++ b/Lib/importlib/machinery.py
@@ -5,5 +5,5 @@ from ._bootstrap import FrozenImporter
from ._bootstrap import PathFinder
from ._bootstrap import FileFinder
from ._bootstrap import SourceFileLoader
-from ._bootstrap import SourcelessFileLoader
+from ._bootstrap import _SourcelessFileLoader
from ._bootstrap import ExtensionFileLoader