[pypy-svn] r69517 - pypy/trunk/pypy/rpython/memory/gc

fijal at codespeak.net fijal at codespeak.net
Sun Nov 22 23:42:01 CET 2009


Author: fijal
Date: Sun Nov 22 23:42:00 2009
New Revision: 69517

Modified:
   pypy/trunk/pypy/rpython/memory/gc/hybrid.py
Log:
I'm confused. Either hybrid gc can realloc and we should enable it
(which was the original idea), or we should simply kill the whole reallocing
logic


Modified: pypy/trunk/pypy/rpython/memory/gc/hybrid.py
==============================================================================
--- pypy/trunk/pypy/rpython/memory/gc/hybrid.py	(original)
+++ pypy/trunk/pypy/rpython/memory/gc/hybrid.py	Sun Nov 22 23:42:00 2009
@@ -82,7 +82,7 @@
     """
     first_unused_gcflag = _gcflag_next_bit
     prebuilt_gc_objects_are_static_roots = True
-    can_realloc = False
+    can_realloc = True
 
     # the following values override the default arguments of __init__ when
     # translating to a real backend.



More information about the Pypy-commit mailing list