[pypy-commit] extradoc extradoc: sort benchmarks
bivab
noreply at buildbot.pypy.org
Tue Jul 24 20:59:44 CEST 2012
Author: David Schneider <david.schneider at picle.org>
Branch: extradoc
Changeset: r4351:b4cbe4786741
Date: 2012-07-24 15:35 +0200
http://bitbucket.org/pypy/extradoc/changeset/b4cbe4786741/
Log: sort benchmarks
diff --git a/talk/vmil2012/tool/build_tables.py b/talk/vmil2012/tool/build_tables.py
--- a/talk/vmil2012/tool/build_tables.py
+++ b/talk/vmil2012/tool/build_tables.py
@@ -40,7 +40,7 @@
"%.2f" % ((1 - guards_ao/guards_bo) * 100,),
]
table.append(res)
- output = render_table(template, head, table)
+ output = render_table(template, head, sorted(table))
# Write the output to a file
with open(texfile, 'w') as out_f:
out_f.write(output)
More information about the pypy-commit
mailing list