1
0
mirror of https://github.com/django/django.git synced 2025-04-04 21:46:40 +00:00

Removed unused 'Between' lookup.

It was added in 20bab2cf9d02a5c6477d8aac066a635986e0d3f3 and stopped being
used for `Range` in 00aa562884a418c4ee20e223ab82c3455997ee7d when
`bilateral` was added to `Transform`.
This commit is contained in:
Adam Chainz 2016-02-28 10:32:33 +00:00 committed by Tim Graham
parent 72e5778b23
commit 6a383f773a

View File

@ -341,11 +341,6 @@ class IEndsWith(PatternLookup):
Field.register_lookup(IEndsWith)
class Between(BuiltinLookup):
def get_rhs_op(self, connection, rhs):
return "BETWEEN %s AND %s" % (rhs, rhs)
class Range(BuiltinLookup):
lookup_name = 'range'