Code comment fix.

This commit is contained in:
Mitar 2012-08-26 14:28:44 -07:00
parent 5a9e127efc
commit b2ffa2ea90
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',