2012-04-15 17:08:47 -03:00
|
|
|
"""This module provides the components needed to build your own __import__
|
|
|
|
function. Undocumented functions are obsolete.
|
|
|
|
|
|
|
|
In most cases it is preferred you consider using the importlib module's
|
|
|
|
functionality over this module.
|
|
|
|
|
|
|
|
"""
|
|
|
|
# (Probably) need to stay in _imp
|
|
|
|
from _imp import (lock_held, acquire_lock, release_lock, reload,
|
2012-04-15 20:06:23 -03:00
|
|
|
load_dynamic, get_frozen_object, is_frozen_package,
|
|
|
|
init_builtin, init_frozen, is_builtin, is_frozen,
|
|
|
|
_fix_co_filename)
|
2012-04-15 17:08:47 -03:00
|
|
|
# Can (probably) move to importlib
|
|
|
|
from _imp import (get_magic, get_tag, get_suffixes, cache_from_source,
|
|
|
|
source_from_cache)
|
|
|
|
# Should be re-implemented here (and mostly deprecated)
|
2012-04-15 23:28:28 -03:00
|
|
|
from _imp import (find_module, load_compiled, load_source, NullImporter,
|
2012-04-15 17:08:47 -03:00
|
|
|
SEARCH_ERROR, PY_SOURCE, PY_COMPILED, C_EXTENSION,
|
|
|
|
PY_RESOURCE, PKG_DIRECTORY, C_BUILTIN, PY_FROZEN,
|
|
|
|
PY_CODERESOURCE, IMP_HOOK)
|
|
|
|
|
|
|
|
from importlib._bootstrap import _new_module as new_module
|
2012-04-15 21:25:23 -03:00
|
|
|
|
2012-04-15 23:28:28 -03:00
|
|
|
from importlib import _bootstrap
|
|
|
|
import os
|
|
|
|
|
|
|
|
|
|
|
|
def load_package(name, path):
|
|
|
|
if os.path.isdir(path):
|
|
|
|
extensions = _bootstrap._suffix_list(PY_SOURCE)
|
|
|
|
extensions += _bootstrap._suffix_list(PY_COMPILED)
|
|
|
|
for extension in extensions:
|
|
|
|
path = os.path.join(path, '__init__'+extension)
|
|
|
|
if os.path.exists(path):
|
|
|
|
break
|
|
|
|
else:
|
|
|
|
raise ValueError('{!r} is not a package'.format(path))
|
|
|
|
return _bootstrap._SourceFileLoader(name, path).load_module(name)
|
|
|
|
|
2012-04-15 21:25:23 -03:00
|
|
|
|
|
|
|
def load_module(name, file, filename, details):
|
|
|
|
"""Load a module, given information returned by find_module().
|
|
|
|
|
|
|
|
The module name must include the full package name, if any.
|
|
|
|
|
|
|
|
"""
|
|
|
|
suffix, mode, type_ = details
|
|
|
|
if mode and (not mode.startswith(('r', 'U'))) or '+' in mode:
|
|
|
|
raise ValueError('invalid file open mode {!r}'.format(mode))
|
|
|
|
elif file is None and type_ in {PY_SOURCE, PY_COMPILED}:
|
|
|
|
msg = 'file object required for import (type code {})'.format(type_)
|
|
|
|
raise ValueError(msg)
|
|
|
|
elif type_ == PY_SOURCE:
|
|
|
|
return load_source(name, filename, file)
|
|
|
|
elif type_ == PY_COMPILED:
|
|
|
|
return load_compiled(name, filename, file)
|
|
|
|
elif type_ == PKG_DIRECTORY:
|
|
|
|
return load_package(name, filename)
|
|
|
|
elif type_ == C_BUILTIN:
|
|
|
|
return init_builtin(name)
|
|
|
|
elif type_ == PY_FROZEN:
|
|
|
|
return init_frozen(name)
|
|
|
|
else:
|
|
|
|
msg = "Don't know how to import {} (type code {}".format(name, type_)
|
|
|
|
raise ImportError(msg, name=name)
|