aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorArmin Ronacher <armin.ronacher@active-4.com>2008-04-27 21:28:03 +0200
committerArmin Ronacher <armin.ronacher@active-4.com>2008-04-27 21:28:03 +0200
commitc9705c245dcd3020575e9e948675be10b908720f (patch)
tree718679184c7bbf91a5be3a413388dfbf3ba4dec3 /examples
parent32a910f041ef31a62dcff468ab1d6f3d3f711266 (diff)
downloadjinja-c9705c245dcd3020575e9e948675be10b908720f.tar.gz
all unittests pass, the special and dependency lookups have their own visitors now, with `self` one can get a reference to the current template and render blocks multiple times.
--HG-- branch : trunk
Diffstat (limited to 'examples')
-rw-r--r--examples/bench.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/bench.py b/examples/bench.py
index 15830a0b..e27489c3 100644
--- a/examples/bench.py
+++ b/examples/bench.py
@@ -295,7 +295,9 @@ sys.stdout.write('\r' + '\n'.join((
__doc__,
'-' * 80
)) + '\n')
-for test in 'jinja', 'tenjin', 'mako', 'spitfire', 'django', 'genshi', 'cheetah':
+
+
+for test in 'jinja', 'mako', 'tenjin', 'spitfire', 'django', 'genshi', 'cheetah':
if locals()['test_' + test] is None:
sys.stdout.write(' %-20s*not installed*\n' % test)
continue