1
0
mirror of https://github.com/django/django.git synced 2025-03-07 07:52:31 +00:00

Removed non-used EmptyShortCircuit

This commit is contained in:
Anssi Kääriäinen 2015-02-04 10:35:40 +02:00 committed by Tim Graham
parent 7145c8a62a
commit 4d3470e52e

@ -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.