[pypy-commit] pypy ffi-backend: Missing attribute

arigo noreply at buildbot.pypy.org
Sat Jul 28 17:37:49 CEST 2012


Author: Armin Rigo <arigo at tunes.org>
Branch: ffi-backend
Changeset: r56497:80c5ab2a057d
Date: 2012-07-28 14:28 +0000
http://bitbucket.org/pypy/pypy/changeset/80c5ab2a057d/

Log:	Missing attribute

diff --git a/pypy/module/_cffi_backend/ctypeobj.py b/pypy/module/_cffi_backend/ctypeobj.py
--- a/pypy/module/_cffi_backend/ctypeobj.py
+++ b/pypy/module/_cffi_backend/ctypeobj.py
@@ -10,7 +10,7 @@
 
 
 class W_CType(Wrappable):
-    _attrs_ = ['space', 'size', 'name', 'name_position']
+    _attrs_ = ['space', 'size', 'name', 'name_position', '_lifeline_']
     _immutable_fields_ = _attrs_
 
     cast_anything = False


More information about the pypy-commit mailing list