Moved django.db.models.loading to django.apps.cache.

This commit doesn't contain any code changes; it's purely a refactoring.
This commit is contained in:
Aymeric Augustin 2013-12-11 21:44:27 +01:00
parent fe1389e911
commit 860c2c8bc5
40 changed files with 448 additions and 419 deletions

View file

@ -2,10 +2,10 @@ from __future__ import unicode_literals
from operator import attrgetter
from django.apps.cache import cache
from django.contrib.contenttypes.models import ContentType
from django.contrib.sessions.backends.db import SessionStore
from django.db.models import Count
from django.db.models.loading import cache
from django.test import TestCase
from django.test.utils import override_settings