Home | History | Annotate | Download | only in jinja2

Lines Matching full:operators

10     On the one hand it filters out invalid operators like the bitshift
11 operators we don't allow in templates. On the other hand it separates
102 # bind operators to token types
103 operators = {
132 reverse_operators = dict([(v, k) for k, v in iteritems(operators)])
133 assert len(operators) == len(reverse_operators), 'operators dropped'
135 sorted(operators, key=lambda x: -len(x))))
590 token = operators[value]
629 # like operators