Merge pull request #309 from mitar/patch-1

Code comment fix.
This commit is contained in:
Florian Apolloner 2012-08-28 13:20:59 -07:00
commit 3f6a1f430a
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
from collections import namedtuple
import re
# Valid query types (a dictionary is used for speedy lookups).
# Valid query types (a set is used for speedy lookups).
QUERY_TERMS = set([
'exact', 'iexact', 'contains', 'icontains', 'gt', 'gte', 'lt', 'lte', 'in',
'startswith', 'istartswith', 'endswith', 'iendswith', 'range', 'year',