[pypy-svn] r50894 - pypy/build/buildbot

exarkun at codespeak.net exarkun at codespeak.net
Tue Jan 22 23:16:13 CET 2008


Author: exarkun
Date: Tue Jan 22 23:16:12 2008
New Revision: 50894

Modified:
   pypy/build/buildbot/pypy_status.py
Log:
put the builder names in so you can tell what the table means

Modified: pypy/build/buildbot/pypy_status.py
==============================================================================
--- pypy/build/buildbot/pypy_status.py	(original)
+++ pypy/build/buildbot/pypy_status.py	Tue Jan 22 23:16:12 2008
@@ -77,7 +77,11 @@
         tags.div()["P - Passed"],
         tags.div()["F - Failed"],
         tags.div()["S - Skipped"],
-        tags.div()["? - No result available"]]
+        tags.div()["? - No result available"],
+        tags.div()["Table cells correspond to these builders, left to right:"],
+        [tags.div()[name]
+         for name
+         in builderNames]]
 
     return flatten(tags.div()[
         legend,



More information about the Pypy-commit mailing list