diff options
author | Marc-Andre Lemburg <mal@egenix.com> | 2012-04-24 23:36:48 (GMT) |
---|---|---|
committer | Marc-Andre Lemburg <mal@egenix.com> | 2012-04-24 23:36:48 (GMT) |
commit | 2945e78b05b8629969764842f73a845c1cbb2fb9 (patch) | |
tree | 968c259c2d1cdc2610bd4397b5d2469f3599bce1 /Lib/importlib/abc.py | |
parent | a5798ded26e3ad67946b7d8150a8e13b0075fbf8 (diff) | |
download | cpython-2945e78b05b8629969764842f73a845c1cbb2fb9.zip cpython-2945e78b05b8629969764842f73a845c1cbb2fb9.tar.gz cpython-2945e78b05b8629969764842f73a845c1cbb2fb9.tar.bz2 |
Issue #14605: Rename _SourcelessFileLoader to SourcelessFileLoader
Diffstat (limited to 'Lib/importlib/abc.py')
-rw-r--r-- | Lib/importlib/abc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/importlib/abc.py b/Lib/importlib/abc.py index baa09fd..c171da3 100644 --- a/Lib/importlib/abc.py +++ b/Lib/importlib/abc.py @@ -119,7 +119,7 @@ class FileLoader(_bootstrap.FileLoader, ResourceLoader, ExecutionLoader): ExecutionLoader ABCs.""" _register(FileLoader, machinery.SourceFileLoader, - machinery._SourcelessFileLoader) + machinery.SourcelessFileLoader) class SourceLoader(_bootstrap.SourceLoader, ResourceLoader, ExecutionLoader): |