Commit b2ffa2ea authored by Mitar's avatar Mitar
Browse files

Code comment fix.

parent 5a9e127e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
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',