Formatting fix for [3248]
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3250 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
31eb140b5a
commit
ec23edfc7f
|
@ -15,13 +15,10 @@ LOOKUP_SEPARATOR = '__'
|
||||||
|
|
||||||
# The list of valid query types
|
# The list of valid query types
|
||||||
QUERY_TERMS = (
|
QUERY_TERMS = (
|
||||||
'exact', 'iexact',
|
'exact', 'iexact', 'contains', 'icontains',
|
||||||
'contains', 'icontains',
|
'gt', 'gte', 'lt', 'lte', 'in',
|
||||||
'gt', 'gte', 'lt', 'lte',
|
|
||||||
'in',
|
|
||||||
'startswith', 'istartswith', 'endswith', 'iendswith',
|
'startswith', 'istartswith', 'endswith', 'iendswith',
|
||||||
'range', 'year', 'month', 'day',
|
'range', 'year', 'month', 'day', 'isnull',
|
||||||
'isnull'
|
|
||||||
)
|
)
|
||||||
|
|
||||||
# Size of each "chunk" for get_iterator calls.
|
# Size of each "chunk" for get_iterator calls.
|
||||||
|
|
Loading…
Reference in New Issue