Author: Armin Rigo <[email protected]>
Branch: stm-gc
Changeset: r52549:f2e6cf67d37a
Date: 2012-02-16 13:09 +0100
http://bitbucket.org/pypy/pypy/changeset/f2e6cf67d37a/

Log:    Fix (thanks weirdo).

diff --git a/pypy/jit/metainterp/virtualizable.py 
b/pypy/jit/metainterp/virtualizable.py
--- a/pypy/jit/metainterp/virtualizable.py
+++ b/pypy/jit/metainterp/virtualizable.py
@@ -31,7 +31,7 @@
         self.vable_token_descr = cpu.fielddescrof(VTYPE, 'vable_token')
         #
         accessor = VTYPE._hints['virtualizable2_accessor']
-        all_fields = accessor.fields
+        all_fields = accessor._fields
         static_fields = []
         array_fields = []
         for name, tp in all_fields.iteritems():
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to