1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Moved apps back in the toplevel django namespace.

Reverted 4a56a93cc4.
This commit is contained in:
Aymeric Augustin
2013-12-22 11:35:17 +01:00
parent 99bd39ef6e
commit 2fef9e5375
95 changed files with 101 additions and 101 deletions

View File

@@ -3,7 +3,7 @@ Module for abstract serializer/unserializer base classes.
"""
import warnings
from django.core.apps import app_cache
from django.apps import app_cache
from django.db import models
from django.utils import six

View File

@@ -5,8 +5,8 @@ other serializers.
"""
from __future__ import unicode_literals
from django.apps import app_cache
from django.conf import settings
from django.core.apps import app_cache
from django.core.serializers import base
from django.db import models, DEFAULT_DB_ALIAS
from django.utils.encoding import smart_text, is_protected_type

View File

@@ -4,8 +4,8 @@ XML serializer.
from __future__ import unicode_literals
from django.apps import app_cache
from django.conf import settings
from django.core.apps import app_cache
from django.core.serializers import base
from django.db import models, DEFAULT_DB_ALIAS
from django.utils.xmlutils import SimplerXMLGenerator