diff options
| author | Ryan Heard <ryanwheard@gmail.com> | 2021-07-02 15:09:13 -0500 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2022-03-04 12:55:37 +0100 |
| commit | c6b4d62fa2c7f73b87f6ae7e8cf1d64ee5312dc5 (patch) | |
| tree | 238bd8c3045c8d4577e09bd913de9748dcd49968 /django/db/models/sql/__init__.py | |
| parent | 795da6306a048b18c0158496b0d49e8e4f197a32 (diff) | |
Fixed #29865 -- Added logical XOR support for Q() and querysets.
Diffstat (limited to 'django/db/models/sql/__init__.py')
| -rw-r--r-- | django/db/models/sql/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/django/db/models/sql/__init__.py b/django/db/models/sql/__init__.py index 2956e047b1..dd31a6ea9e 100644 --- a/django/db/models/sql/__init__.py +++ b/django/db/models/sql/__init__.py @@ -1,6 +1,6 @@ from django.db.models.sql.query import * # NOQA from django.db.models.sql.query import Query from django.db.models.sql.subqueries import * # NOQA -from django.db.models.sql.where import AND, OR +from django.db.models.sql.where import AND, OR, XOR -__all__ = ["Query", "AND", "OR"] +__all__ = ["Query", "AND", "OR", "XOR"] |
