summaryrefslogtreecommitdiff
path: root/django/db/models/sql/where.py
diff options
context:
space:
mode:
authorAnssi Kääriäinen <anssi.kaariainen@thl.fi>2015-02-04 10:35:40 +0200
committerTim Graham <timograham@gmail.com>2015-02-04 09:26:40 -0500
commit4d3470e52e005ed75aa6c7d4204bf5ca87733f85 (patch)
treed348804f82674adf9b16c101c9b33f33920170e0 /django/db/models/sql/where.py
parent7145c8a62a38c3b30641bb84a51f7567ce9bc10e (diff)
Removed non-used EmptyShortCircuit
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.