mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	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:
		| @@ -14,14 +14,11 @@ if not hasattr(__builtins__, 'set'): | |||||||
| LOOKUP_SEPARATOR = '__' | 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. | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user