Author: Armin Rigo <ar...@tunes.org> Branch: Changeset: r70656:28f12116ef3d Date: 2014-04-16 15:53 +0200 http://bitbucket.org/pypy/pypy/changeset/28f12116ef3d/
Log: Unsure of this fix, but should help fix translation diff --git a/pypy/module/micronumpy/types.py b/pypy/module/micronumpy/types.py --- a/pypy/module/micronumpy/types.py +++ b/pypy/module/micronumpy/types.py @@ -442,7 +442,7 @@ return v1 % v2 @simple_binary_op - @jit.unroll_iff(lambda self, v1, v2: jit.isconstant(v2)) + @jit.look_inside_iff(lambda self, v1, v2: jit.isconstant(v2)) def pow(self, v1, v2): if v2 < 0: return 0 _______________________________________________ pypy-commit mailing list pypy-commit@python.org https://mail.python.org/mailman/listinfo/pypy-commit