[pypy-commit] extradoc extradoc: remove relation column from data size table

bivab noreply at buildbot.pypy.org
Tue Aug 14 17:15:15 CEST 2012


Author: David Schneider <david.schneider at picle.org>
Branch: extradoc
Changeset: r4566:bd680d77522b
Date: 2012-08-14 16:52 +0200
http://bitbucket.org/pypy/extradoc/changeset/bd680d77522b/

Log:	remove relation column from data size table

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
@@ -164,7 +164,8 @@
             r'Code',
             r'Resume data',
             r'Backend map',
-            r'Relation']
+            #r'Relation',
+            ]
 
     table = []
     # collect data
@@ -180,7 +181,8 @@
             r"%.1f {\scriptsize KiB}" % (asmsize,),
             r"%.1f {\scriptsize KiB}" % (rdsize,),
             r"%.1f {\scriptsize KiB}" % (gmsize,),
-            rel])
+            #rel,
+            ])
     output = render_table(template, head, sorted(table))
     write_table(output, texfile)
 


More information about the pypy-commit mailing list