switched back to explicit set for assignments. {% foo = 42 %} becomes {% set foo...
authorArmin Ronacher <armin.ronacher@active-4.com>
Mon, 12 May 2008 23:03:08 +0000 (01:03 +0200)
committerArmin Ronacher <armin.ronacher@active-4.com>
Mon, 12 May 2008 23:03:08 +0000 (01:03 +0200)
commit0a2ac69bb97370591306f396b693b93af67726fd
treef6ed9c0a60202f85e21b0790e96c6e33cc63fd73
parent69e12dbb951fad8bfb7e92b8b3060aff288b5b98
switched back to explicit set for assignments.  {% foo = 42 %} becomes {% set foo = 42 %} and {% foo.something() }} becomes {{ void(foo.something() }} with this commit.

--HG--
branch : trunk
TODO
docs/_templates/genindex.html
docs/_templates/search.html
jinja2/compiler.py
jinja2/defaults.py
jinja2/parser.py
tests/test_macros.py
tests/test_various.py