[pypy-commit] extradoc extradoc: use KiB here

bivab noreply at buildbot.pypy.org
Fri Aug 10 14:26:03 CEST 2012


Author: David Schneider <david.schneider at picle.org>
Branch: extradoc
Changeset: r4496:c34bf5f02cce
Date: 2012-08-10 14:24 +0200
http://bitbucket.org/pypy/extradoc/changeset/c34bf5f02cce/

Log:	use KiB here

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
@@ -174,9 +174,9 @@
         rel = r"%.1f {\scriptsize \%%}" % (asmsize / (gmsize + rdsize) * 100,)
         table.append([
             r"%s" % bench['bench'],
-            r"%.1f {\scriptsize kB}" % (asmsize,),
-            r"%.1f {\scriptsize kB}" % (rdsize,),
-            r"%.1f {\scriptsize kB}" % (gmsize,),
+            r"%.1f {\scriptsize KiB}" % (asmsize,),
+            r"%.1f {\scriptsize KiB}" % (rdsize,),
+            r"%.1f {\scriptsize KiB}" % (gmsize,),
             rel])
     output = render_table(template, head, sorted(table))
     write_table(output, texfile)


More information about the pypy-commit mailing list