[pypy-svn] r78205 - pypy/build/bot2/pypybuildbot

arigo at codespeak.net arigo at codespeak.net
Fri Oct 22 14:28:41 CEST 2010


Author: arigo
Date: Fri Oct 22 14:28:40 2010
New Revision: 78205

Modified:
   pypy/build/bot2/pypybuildbot/summary.py
Log:
Increase the size of the cache.  Right now it needs 84 entries;
it used to be 60, so let's bump it to 150.


Modified: pypy/build/bot2/pypybuildbot/summary.py
==============================================================================
--- pypy/build/bot2/pypybuildbot/summary.py	(original)
+++ pypy/build/bot2/pypybuildbot/summary.py	Fri Oct 22 14:28:40 2010
@@ -295,7 +295,7 @@
 
 N = 5
 
-outcome_set_cache = RevisionOutcomeSetCache(10*(N+1))
+outcome_set_cache = RevisionOutcomeSetCache(25*(N+1))
 
 
 def colsizes(namekeys):



More information about the Pypy-commit mailing list