mirror of
https://github.com/django/django.git
synced 2025-08-23 18:29:12 +00:00
[1.5.x] Fixed #21335 -- Use importlib from python3 when using python3
Backport of 3351e94ffa from master.
This commit is contained in:
parent
4b4b795bd5
commit
1ef737416a
@ -1,6 +1,8 @@
|
|||||||
# Taken from Python 2.7 with permission from/by the original author.
|
# Taken from Python 2.7 with permission from/by the original author.
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
from django.utils import six
|
||||||
|
|
||||||
def _resolve_name(name, package, level):
|
def _resolve_name(name, package, level):
|
||||||
"""Return the absolute name of the module to be imported."""
|
"""Return the absolute name of the module to be imported."""
|
||||||
if not hasattr(package, 'rindex'):
|
if not hasattr(package, 'rindex'):
|
||||||
@ -15,6 +17,9 @@ def _resolve_name(name, package, level):
|
|||||||
return "%s.%s" % (package[:dot], name)
|
return "%s.%s" % (package[:dot], name)
|
||||||
|
|
||||||
|
|
||||||
|
if six.PY3:
|
||||||
|
from importlib import import_module
|
||||||
|
else:
|
||||||
def import_module(name, package=None):
|
def import_module(name, package=None):
|
||||||
"""Import a module.
|
"""Import a module.
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user