[pypy-svn] r17071 - pypy/dist/pypy/rpython/memory

cfbolz at codespeak.net cfbolz at codespeak.net
Mon Aug 29 21:07:29 CEST 2005


Author: cfbolz
Date: Mon Aug 29 21:07:28 2005
New Revision: 17071

Modified:
   pypy/dist/pypy/rpython/memory/support.py
Log:
should raw-allocate these


Modified: pypy/dist/pypy/rpython/memory/support.py
==============================================================================
--- pypy/dist/pypy/rpython/memory/support.py	(original)
+++ pypy/dist/pypy/rpython/memory/support.py	Mon Aug 29 21:07:28 2005
@@ -6,7 +6,7 @@
 INT_SIZE = sizeof(lltype.Signed)
 
 class AddressLinkedList(object):
-    _alloc_flavor_ = ""
+    _alloc_flavor_ = "raw"
     def __init__(self):
         self.first = NULL
         self.last = NULL



More information about the Pypy-commit mailing list