Priority of `not` raised. It's now possible to write `not foo in bar`
authorArmin Ronacher <armin.ronacher@active-4.com>
Wed, 4 Feb 2009 17:57:27 +0000 (18:57 +0100)
committerArmin Ronacher <armin.ronacher@active-4.com>
Wed, 4 Feb 2009 17:57:27 +0000 (18:57 +0100)
commitd89f0f3defdebbf01a2f9f4a381b7e99a49ced03
treea018eb4ab76a3fc69e782fd247ce4465d74268ae
parent8de6f18b9dfd105d3be3ede1b5167ad34535d541
Priority of `not` raised.  It's now possible to write `not foo in bar`
as an alias to `foo not in bar` like in python.  Previously the grammar
required parentheses (`not (foo in bar)`) which was odd.

--HG--
branch : trunk
.hgignore
CHANGES
docs/_static/style.css
docs/cache_extension.py
jinja2/parser.py
tests/test_syntax.py