[pypy-commit] pypy jit-leaner-frontend: fix rpython

fijal pypy.commits at gmail.com
Mon Mar 14 04:14:08 EDT 2016


Author: fijal
Branch: jit-leaner-frontend
Changeset: r83027:0599da8cfbe1
Date: 2016-03-14 10:13 +0200
http://bitbucket.org/pypy/pypy/changeset/0599da8cfbe1/

Log:	fix rpython

diff --git a/rpython/jit/metainterp/history.py b/rpython/jit/metainterp/history.py
--- a/rpython/jit/metainterp/history.py
+++ b/rpython/jit/metainterp/history.py
@@ -122,7 +122,7 @@
         return None
 
 class AbstractDescr(AbstractValue):
-    __slots__ = ()
+    __slots__ = ('descr_index',)
     llopaque = True
     descr_index = -1
 


More information about the pypy-commit mailing list