[pypy-commit] pypy ootype-rerased: Add to llinterp.

ademan noreply at buildbot.pypy.org
Mon Jul 18 23:33:05 CEST 2011


Author: Daniel Roberts <Ademan555 at gmail.com>
Branch: ootype-rerased
Changeset: r45731:63f10ae57971
Date: 2011-07-18 14:28 -0700
http://bitbucket.org/pypy/pypy/changeset/63f10ae57971/

Log:	Add to llinterp.

diff --git a/pypy/rpython/llinterp.py b/pypy/rpython/llinterp.py
--- a/pypy/rpython/llinterp.py
+++ b/pypy/rpython/llinterp.py
@@ -1225,6 +1225,12 @@
         except ValueError:
             self.make_llexception()
 
+    def op_oobox_int(self, i):
+        return ootype.oobox_int(i)
+
+    def op_oounbox_int(self, x):
+        return ootype.oounbox_int(x)
+
 class Tracer(object):
     Counter = 0
     file = None


More information about the pypy-commit mailing list