[pypy-commit] pypy concurrent-marksweep: Fix: I corrected the comment but not the actual value

arigo noreply at buildbot.pypy.org
Mon Jan 9 12:46:10 CET 2012


Author: Armin Rigo <arigo at tunes.org>
Branch: concurrent-marksweep
Changeset: r51170:9ec48159f6e4
Date: 2012-01-09 12:45 +0100
http://bitbucket.org/pypy/pypy/changeset/9ec48159f6e4/

Log:	Fix: I corrected the comment but not the actual value

diff --git a/pypy/rpython/memory/gc/concurrentgen.py b/pypy/rpython/memory/gc/concurrentgen.py
--- a/pypy/rpython/memory/gc/concurrentgen.py
+++ b/pypy/rpython/memory/gc/concurrentgen.py
@@ -65,7 +65,7 @@
 
         # The minimal RAM usage: use 24 MB by default.
         # Environment variable: PYPY_GC_MIN
-        "min_heap_size": 6*1024*1024,
+        "min_heap_size": 24*1024*1024,
         }
 
 


More information about the pypy-commit mailing list