Jinja doesn't have keywords any longer.  The reason for this radical change is that the previous keywords where incompatible with the python keywords which made it impossible to name a variable "filter" or call a function with such a keyword parameter.

--HG--
branch : trunk
diff --git a/tests/test_syntax.py b/tests/test_syntax.py
index af2b0f5..b76fe5f 100644
--- a/tests/test_syntax.py
+++ b/tests/test_syntax.py
@@ -154,6 +154,7 @@
 
 def test_tuple_expr(env):
     for tmpl in TUPLETEMPLATES:
+        print tmpl
         assert env.from_string(tmpl)