From 4fe29c9657d64e8e3301122c104b7ca8fd23c348 Mon Sep 17 00:00:00 2001 From: Marc-Andre Lemburg Date: Wed, 25 Apr 2012 02:31:37 +0200 Subject: Issue #14605: Rename _SourcelessFileLoader to SourcelessFileLoader. This time also recreating the Python/importlib.h file to make make happy. See the ticket for details. --- Lib/imp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/imp.py') diff --git a/Lib/imp.py b/Lib/imp.py index f35247c66cb..0388d0881a5 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().""" -- cgit v1.2.3-65-gdbad