mirror of
https://github.com/django/django.git
synced 2025-12-03 16:47:26 +00:00
Fixed #9104 -- Moved FieldDoesNotExist to core.exceptions
This commit is contained in:
parent
1aa3e09c20
commit
8958170755
22 changed files with 73 additions and 60 deletions
|
|
@ -13,12 +13,11 @@ from collections import Mapping, OrderedDict
|
|||
import copy
|
||||
import warnings
|
||||
|
||||
from django.core.exceptions import FieldError
|
||||
from django.core.exceptions import FieldDoesNotExist, FieldError
|
||||
from django.db import connections, DEFAULT_DB_ALIAS
|
||||
from django.db.models.aggregates import Count
|
||||
from django.db.models.constants import LOOKUP_SEP
|
||||
from django.db.models.expressions import Col, Ref
|
||||
from django.db.models.fields import FieldDoesNotExist
|
||||
from django.db.models.query_utils import PathInfo, Q, refs_aggregate
|
||||
from django.db.models.sql.constants import (QUERY_TERMS, ORDER_DIR, SINGLE,
|
||||
ORDER_PATTERN, SelectInfo, INNER, LOUTER)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue