diff options
Diffstat (limited to 'django/db/models/query_utils.py')
| -rw-r--r-- | django/db/models/query_utils.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/django/db/models/query_utils.py b/django/db/models/query_utils.py index 8920977cd2..a17274fba0 100644 --- a/django/db/models/query_utils.py +++ b/django/db/models/query_utils.py @@ -21,6 +21,8 @@ from django.utils.hashable import make_hashable logger = logging.getLogger("django.db.models") +PROHIBITED_FILTER_KWARGS = frozenset(["_connector", "_negated"]) + # PathInfo is used when converting lookups (fk__somecol). The contents # describe the relation in Model terms (model Options and Fields for both # sides of the relation. The join_field is the field backing the relation. |
