summaryrefslogtreecommitdiffstats
path: root/Lib/importlib/test/test_abc.py
diff options
context:
space:
mode:
authorMarc-Andre Lemburg <mal@egenix.com>2012-04-24 23:36:48 (GMT)
committerMarc-Andre Lemburg <mal@egenix.com>2012-04-24 23:36:48 (GMT)
commit2945e78b05b8629969764842f73a845c1cbb2fb9 (patch)
tree968c259c2d1cdc2610bd4397b5d2469f3599bce1 /Lib/importlib/test/test_abc.py
parenta5798ded26e3ad67946b7d8150a8e13b0075fbf8 (diff)
downloadcpython-2945e78b05b8629969764842f73a845c1cbb2fb9.zip
cpython-2945e78b05b8629969764842f73a845c1cbb2fb9.tar.gz
cpython-2945e78b05b8629969764842f73a845c1cbb2fb9.tar.bz2
Issue #14605: Rename _SourcelessFileLoader to SourcelessFileLoader
Diffstat (limited to 'Lib/importlib/test/test_abc.py')
-rw-r--r--Lib/importlib/test/test_abc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/importlib/test/test_abc.py b/Lib/importlib/test/test_abc.py
index e9eec60..008bd21 100644
--- a/Lib/importlib/test/test_abc.py
+++ b/Lib/importlib/test/test_abc.py
@@ -62,7 +62,7 @@ class ExecutionLoader(InheritanceTests, unittest.TestCase):
class FileLoader(InheritanceTests, unittest.TestCase):
superclasses = [abc.ResourceLoader, abc.ExecutionLoader]
- subclasses = [machinery.SourceFileLoader, machinery._SourcelessFileLoader]
+ subclasses = [machinery.SourceFileLoader, machinery.SourcelessFileLoader]
class SourceLoader(InheritanceTests, unittest.TestCase):