fixed an operator precedence error introduced in 2.5.2. 2.5.3
authorArmin Ronacher <armin.ronacher@active-4.com>
Sun, 17 Oct 2010 13:53:59 +0000 (15:53 +0200)
committerArmin Ronacher <armin.ronacher@active-4.com>
Sun, 17 Oct 2010 13:53:59 +0000 (15:53 +0200)
commit613912d137bc4989f12d1964df97f79ab1e3be88
treee5bd17cc03ed9d1c4407be06d27984e63a08a3bb
parent9dc0619d6528e9fbef328faf56a982d4af7379ba
fixed an operator precedence error introduced in 2.5.2.

Statements like "-foo.bar" had their implicit parentheses applied around
the first part of the expression ("(-foo).bar") instead of the more
correct "-(foo.bar)".
CHANGES
jinja2/parser.py
jinja2/testsuite/lexnparse.py