[pypy-svn] r70847 - pypy/branch/stringbuilder2/pypy/rpython

arigo at codespeak.net arigo at codespeak.net
Mon Jan 25 18:52:49 CET 2010


Author: arigo
Date: Mon Jan 25 18:52:49 2010
New Revision: 70847

Modified:
   pypy/branch/stringbuilder2/pypy/rpython/llinterp.py
Log:
(fijal)
Kill these operations from there as well.


Modified: pypy/branch/stringbuilder2/pypy/rpython/llinterp.py
==============================================================================
--- pypy/branch/stringbuilder2/pypy/rpython/llinterp.py	(original)
+++ pypy/branch/stringbuilder2/pypy/rpython/llinterp.py	Mon Jan 25 18:52:49 2010
@@ -748,15 +748,6 @@
         zero = flags.get('zero', False)
         return self.heap.malloc_nonmovable(TYPE, size, zero=zero)
 
-    def op_malloc_resizable_buffer(self, obj, flags, size):
-        return self.heap.malloc_resizable_buffer(obj, size)
-
-    def op_resize_buffer(self, obj, old_size, new_size):
-        return self.heap.resize_buffer(obj, old_size, new_size)
-
-    def op_finish_building_buffer(self, obj, oldsize, size):
-        return self.heap.finish_building_buffer(obj, oldsize, size)
-
     def op_free(self, obj, flavor):
         assert isinstance(flavor, str)
         if flavor == 'raw' and self.llinterpreter.malloc_check:



More information about the Pypy-commit mailing list