[pypy-commit] pypy gc-del: Fix

arigo noreply at buildbot.pypy.org
Sat Apr 27 13:34:17 CEST 2013


Author: Armin Rigo <arigo at tunes.org>
Branch: gc-del
Changeset: r63684:1506fbf06b43
Date: 2013-04-27 13:24 +0200
http://bitbucket.org/pypy/pypy/changeset/1506fbf06b43/

Log:	Fix

diff --git a/rpython/memory/gctransform/test/test_boehm.py b/rpython/memory/gctransform/test/test_boehm.py
--- a/rpython/memory/gctransform/test/test_boehm.py
+++ b/rpython/memory/gctransform/test/test_boehm.py
@@ -11,7 +11,7 @@
     gcpolicy = BoehmGcPolicy
 
 def make_boehm_finalizer(TYPE):
-    return make_deallocator(TYPE, attr="finalizer_funcptr_for_type",
+    return make_deallocator(TYPE, attr="destructor_funcptr_for_type",
                             cls=BoehmGCTransformer)
 
 def test_boehm_simple():


More information about the pypy-commit mailing list