[pypy-commit] pypy even-more-jit-hooks: oops

fijal noreply at buildbot.pypy.org
Sat Jul 7 19:11:51 CEST 2012


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: even-more-jit-hooks
Changeset: r55973:f02b48a518c8
Date: 2012-07-07 19:11 +0200
http://bitbucket.org/pypy/pypy/changeset/f02b48a518c8/

Log:	oops

diff --git a/pypy/module/pypyjit/interp_resop.py b/pypy/module/pypyjit/interp_resop.py
--- a/pypy/module/pypyjit/interp_resop.py
+++ b/pypy/module/pypyjit/interp_resop.py
@@ -306,7 +306,7 @@
 W_JitLoopInfo.typedef = TypeDef(
     'JitLoopInfo',
     __doc__ = W_JitLoopInfo.__doc__,
-    __new__ = descr_new_jit_loop_info,
+    __new__ = interp2app(descr_new_jit_loop_info),
     jitdriver_name = interp_attrproperty('jd_name', cls=W_JitLoopInfo,
                        doc="Name of the JitDriver, pypyjit for the main one"),
     greenkey = interp_attrproperty_w('w_green_key', cls=W_JitLoopInfo,


More information about the pypy-commit mailing list