[pypy-svn] r70951 - pypy/branch/gc-huge-list/pypy/rpython/memory/gc

fijal at codespeak.net fijal at codespeak.net
Thu Jan 28 15:01:37 CET 2010


Author: fijal
Date: Thu Jan 28 15:01:37 2010
New Revision: 70951

Modified:
   pypy/branch/gc-huge-list/pypy/rpython/memory/gc/base.py
Log:
fix base


Modified: pypy/branch/gc-huge-list/pypy/rpython/memory/gc/base.py
==============================================================================
--- pypy/branch/gc-huge-list/pypy/rpython/memory/gc/base.py	(original)
+++ pypy/branch/gc-huge-list/pypy/rpython/memory/gc/base.py	Thu Jan 28 15:01:37 2010
@@ -73,7 +73,7 @@
     def set_root_walker(self, root_walker):
         self.root_walker = root_walker
 
-    def write_barrier(self, newvalue, addr_struct):
+    def write_barrier(self, newvalue, addr_struct, offset):
         pass
 
     def statistics(self, index):



More information about the Pypy-commit mailing list