[pypy-svn] r55252 - pypy/dist/pypy/rpython/memory/gc

fijal at codespeak.net fijal at codespeak.net
Mon May 26 19:11:02 CEST 2008


Author: fijal
Date: Mon May 26 19:11:01 2008
New Revision: 55252

Modified:
   pypy/dist/pypy/rpython/memory/gc/hybrid.py
Log:
Disable reallocation for hybrid gc by default


Modified: pypy/dist/pypy/rpython/memory/gc/hybrid.py
==============================================================================
--- pypy/dist/pypy/rpython/memory/gc/hybrid.py	(original)
+++ pypy/dist/pypy/rpython/memory/gc/hybrid.py	Mon May 26 19:11:01 2008
@@ -81,7 +81,7 @@
     """
     first_unused_gcflag = _gcflag_next_bit
     prebuilt_gc_objects_are_static_roots = True
-    can_realloc = True
+    can_realloc = False
 
     # the following values override the default arguments of __init__ when
     # translating to a real backend.



More information about the Pypy-commit mailing list