2009-03-19 00:55:59 +08:00
|
|
|
# Taken from Python 2.7 with permission from/by the original author.
|
2013-07-29 21:50:58 +08:00
|
|
|
import warnings
|
2009-03-19 00:55:59 +08:00
|
|
|
import sys
|
|
|
|
|
2013-10-26 07:07:40 +08:00
|
|
|
from django.utils import six
|
2014-02-27 05:48:20 +08:00
|
|
|
from django.utils.deprecation import RemovedInDjango19Warning
|
|
|
|
|
2013-10-26 07:07:40 +08:00
|
|
|
|
2013-07-29 21:50:58 +08:00
|
|
|
warnings.warn("django.utils.importlib will be removed in Django 1.9.",
|
2014-02-27 05:48:20 +08:00
|
|
|
RemovedInDjango19Warning, stacklevel=2)
|
2013-07-29 21:50:58 +08:00
|
|
|
|
|
|
|
|
2009-03-19 00:55:59 +08:00
|
|
|
def _resolve_name(name, package, level):
|
|
|
|
"""Return the absolute name of the module to be imported."""
|
|
|
|
if not hasattr(package, 'rindex'):
|
|
|
|
raise ValueError("'package' not set to a string")
|
|
|
|
dot = len(package)
|
2012-07-21 00:53:11 +08:00
|
|
|
for x in range(level, 1, -1):
|
2009-03-19 00:55:59 +08:00
|
|
|
try:
|
|
|
|
dot = package.rindex('.', 0, dot)
|
|
|
|
except ValueError:
|
2013-12-13 04:23:24 +08:00
|
|
|
raise ValueError("attempted relative import beyond top-level package")
|
2009-03-19 00:55:59 +08:00
|
|
|
return "%s.%s" % (package[:dot], name)
|
|
|
|
|
|
|
|
|
2013-10-26 07:07:40 +08:00
|
|
|
if six.PY3:
|
|
|
|
from importlib import import_module
|
|
|
|
else:
|
|
|
|
def import_module(name, package=None):
|
|
|
|
"""Import a module.
|
|
|
|
|
|
|
|
The 'package' argument is required when performing a relative import. It
|
|
|
|
specifies the package to use as the anchor point from which to resolve the
|
|
|
|
relative import to an absolute import.
|
|
|
|
|
|
|
|
"""
|
|
|
|
if name.startswith('.'):
|
|
|
|
if not package:
|
|
|
|
raise TypeError("relative imports require the 'package' argument")
|
|
|
|
level = 0
|
|
|
|
for character in name:
|
|
|
|
if character != '.':
|
|
|
|
break
|
|
|
|
level += 1
|
|
|
|
name = _resolve_name(name[level:], package, level)
|
|
|
|
__import__(name)
|
|
|
|
return sys.modules[name]
|