aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/importlib/test/source/test_file_loader.py
diff options
context:
space:
mode:
authorMarc-Andre Lemburg <mal@egenix.com>2012-04-25 02:31:37 +0200
committerMarc-Andre Lemburg <mal@egenix.com>2012-04-25 02:31:37 +0200
commit4fe29c9657d64e8e3301122c104b7ca8fd23c348 (patch)
treef04a51eef51805eacccaa931e0d9ba4bec9ecb51 /Lib/importlib/test/source/test_file_loader.py
parentac8805a01a0beeb4c5b2f6d9d988629446517632 (diff)
downloadcpython-4fe29c9657d64e8e3301122c104b7ca8fd23c348.tar.gz
cpython-4fe29c9657d64e8e3301122c104b7ca8fd23c348.zip
Issue #14605: Rename _SourcelessFileLoader to SourcelessFileLoader.
This time also recreating the Python/importlib.h file to make make happy. See the ticket for details.
Diffstat (limited to 'Lib/importlib/test/source/test_file_loader.py')
-rw-r--r--Lib/importlib/test/source/test_file_loader.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/importlib/test/source/test_file_loader.py b/Lib/importlib/test/source/test_file_loader.py
index 764dcff0359..c4c75451c29 100644
--- a/Lib/importlib/test/source/test_file_loader.py
+++ b/Lib/importlib/test/source/test_file_loader.py
@@ -379,7 +379,7 @@ class SourceLoaderBadBytecodeTest(BadBytecodeTest):
class SourcelessLoaderBadBytecodeTest(BadBytecodeTest):
- loader = _bootstrap._SourcelessFileLoader
+ loader = _bootstrap.SourcelessFileLoader
def test_empty_file(self):
def test(name, mapping, bytecode_path):