diff options
author | Marc-Andre Lemburg <mal@egenix.com> | 2012-04-25 01:36:48 +0200 |
---|---|---|
committer | Marc-Andre Lemburg <mal@egenix.com> | 2012-04-25 01:36:48 +0200 |
commit | 2945e78b05b8629969764842f73a845c1cbb2fb9 (patch) | |
tree | 968c259c2d1cdc2610bd4397b5d2469f3599bce1 /Lib/imp.py | |
parent | a5798ded26e3ad67946b7d8150a8e13b0075fbf8 (diff) | |
download | cpython-git-2945e78b05b8629969764842f73a845c1cbb2fb9.tar.gz |
Issue #14605: Rename _SourcelessFileLoader to SourcelessFileLoader
Diffstat (limited to 'Lib/imp.py')
-rw-r--r-- | Lib/imp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/imp.py b/Lib/imp.py index f35247c66c..0388d0881a 100644 --- a/Lib/imp.py +++ b/Lib/imp.py @@ -94,7 +94,7 @@ def load_source(name, pathname, file=None): class _LoadCompiledCompatibility(_HackedGetData, - _bootstrap._SourcelessFileLoader): + _bootstrap.SourcelessFileLoader): """Compatibility support for implementing load_compiled().""" |