[pypy-commit] pypy gc-del: Add missing operation

arigo noreply at buildbot.pypy.org
Sat Apr 27 13:45:15 CEST 2013


Author: Armin Rigo <arigo at tunes.org>
Branch: gc-del
Changeset: r63691:39bf0e2e6e2c
Date: 2013-04-27 13:43 +0200
http://bitbucket.org/pypy/pypy/changeset/39bf0e2e6e2c/

Log:	Add missing operation

diff --git a/rpython/rtyper/llinterp.py b/rpython/rtyper/llinterp.py
--- a/rpython/rtyper/llinterp.py
+++ b/rpython/rtyper/llinterp.py
@@ -826,6 +826,9 @@
         else:
             self.heap.register_finalizer(llptr, llfn)
 
+    def op_gc_progress_finalizer_queue(self):
+        raise NotImplementedError
+
     def op_gc_heap_stats(self):
         raise NotImplementedError
 


More information about the pypy-commit mailing list