From 4d3470e52e005ed75aa6c7d4204bf5ca87733f85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anssi=20K=C3=A4=C3=A4ri=C3=A4inen?= Date: Wed, 4 Feb 2015 10:35:40 +0200 Subject: [PATCH] Removed non-used EmptyShortCircuit --- django/db/models/sql/where.py | 8 -------- 1 file changed, 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.