[pypy-commit] pypy ffi-backend: Translation fix

arigo noreply at buildbot.pypy.org
Sat Jul 7 10:56:30 CEST 2012


Author: Armin Rigo <arigo at tunes.org>
Branch: ffi-backend
Changeset: r55956:fa9e074e4cbb
Date: 2012-07-07 10:56 +0200
http://bitbucket.org/pypy/pypy/changeset/fa9e074e4cbb/

Log:	Translation fix

diff --git a/pypy/module/_cffi_backend/ccallback.py b/pypy/module/_cffi_backend/ccallback.py
--- a/pypy/module/_cffi_backend/ccallback.py
+++ b/pypy/module/_cffi_backend/ccallback.py
@@ -53,7 +53,7 @@
     def get_closure(self):
         return rffi.cast(clibffi.FFI_CLOSUREP, self._cdata)
 
-    @rgc.must_be_light_finalizer
+    #@rgc.must_be_light_finalizer
     def __del__(self):
         clibffi.closureHeap.free(self.get_closure())
         if self.ll_error:


More information about the pypy-commit mailing list