summaryrefslogtreecommitdiff
path: root/django/db/models/sql/where.py
diff options
context:
space:
mode:
Diffstat (limited to 'django/db/models/sql/where.py')
-rw-r--r--django/db/models/sql/where.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/django/db/models/sql/where.py b/django/db/models/sql/where.py
index 2b04cbe708..de51e1db04 100644
--- a/django/db/models/sql/where.py
+++ b/django/db/models/sql/where.py
@@ -12,14 +12,6 @@ AND = 'AND'
OR = 'OR'
-class EmptyShortCircuit(Exception):
- """
- Internal exception used to indicate that a "matches nothing" node should be
- added to the where-clause.
- """
- pass
-
-
class WhereNode(tree.Node):
"""
Used to represent the SQL where-clause.