1
0
mirror of https://github.com/django/django.git synced 2025-10-30 17:16:10 +00:00

Remove a bunch of deadcode/dead imports.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@16794 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Alex Gaynor
2011-09-10 22:31:38 +00:00
parent 807b2a8216
commit 345c4c4629
5 changed files with 6 additions and 11 deletions

View File

@@ -15,7 +15,7 @@ from django.utils.tree import Node
from django.db import connections, DEFAULT_DB_ALIAS
from django.db.models import signals
from django.db.models.fields import FieldDoesNotExist
from django.db.models.query_utils import select_related_descend, InvalidQuery
from django.db.models.query_utils import InvalidQuery
from django.db.models.sql import aggregates as base_aggregates_module
from django.db.models.sql.constants import *
from django.db.models.sql.datastructures import EmptyResultSet, Empty, MultiJoin
@@ -567,7 +567,6 @@ class Query(object):
field_names, defer = self.deferred_loading
if not field_names:
return
columns = set()
orig_opts = self.model._meta
seen = {}
if orig_opts.proxy: