From 32439d6eb63f1ea31aed1e45459f0f50f965ef51 Mon Sep 17 00:00:00 2001 From: Eric Snow Date: Sat, 2 May 2015 19:15:18 -0600 Subject: Issue #23911: Move path-based bootstrap code to a separate frozen module. --- Lib/importlib/util.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'Lib/importlib/util.py') diff --git a/Lib/importlib/util.py b/Lib/importlib/util.py index c42ef14c5d..1dbff2605e 100644 --- a/Lib/importlib/util.py +++ b/Lib/importlib/util.py @@ -1,14 +1,14 @@ """Utility code for constructing importers, etc.""" from . import abc -from ._bootstrap import MAGIC_NUMBER -from ._bootstrap import cache_from_source -from ._bootstrap import decode_source from ._bootstrap import module_from_spec -from ._bootstrap import source_from_cache -from ._bootstrap import spec_from_loader -from ._bootstrap import spec_from_file_location from ._bootstrap import _resolve_name +from ._bootstrap import spec_from_loader from ._bootstrap import _find_spec +from ._bootstrap_external import MAGIC_NUMBER +from ._bootstrap_external import cache_from_source +from ._bootstrap_external import decode_source +from ._bootstrap_external import source_from_cache +from ._bootstrap_external import spec_from_file_location from contextlib import contextmanager import functools -- cgit v1.2.1