diff options
author | Marc-Andre Lemburg <mal@egenix.com> | 2012-04-25 00:31:37 (GMT) |
---|---|---|
committer | Marc-Andre Lemburg <mal@egenix.com> | 2012-04-25 00:31:37 (GMT) |
commit | 4fe29c9657d64e8e3301122c104b7ca8fd23c348 (patch) | |
tree | f04a51eef51805eacccaa931e0d9ba4bec9ecb51 /Lib/imp.py | |
parent | ac8805a01a0beeb4c5b2f6d9d988629446517632 (diff) | |
download | cpython-4fe29c9657d64e8e3301122c104b7ca8fd23c348.zip cpython-4fe29c9657d64e8e3301122c104b7ca8fd23c348.tar.gz cpython-4fe29c9657d64e8e3301122c104b7ca8fd23c348.tar.bz2 |
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/imp.py')
-rw-r--r-- | Lib/imp.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -94,7 +94,7 @@ def load_source(name, pathname, file=None): class _LoadCompiledCompatibility(_HackedGetData, - _bootstrap._SourcelessFileLoader): + _bootstrap.SourcelessFileLoader): """Compatibility support for implementing load_compiled().""" |