[pypy-commit] pypy default: unbreak translation (bad me, no cookie)

cfbolz pypy.commits at gmail.com
Fri Aug 4 03:03:27 EDT 2017


Author: Carl Friedrich Bolz <cfbolz at gmx.de>
Branch: 
Changeset: r92068:7f9bc66e8749
Date: 2017-08-04 09:01 +0200
http://bitbucket.org/pypy/pypy/changeset/7f9bc66e8749/

Log:	unbreak translation (bad me, no cookie)

diff --git a/pypy/module/array/interp_array.py b/pypy/module/array/interp_array.py
--- a/pypy/module/array/interp_array.py
+++ b/pypy/module/array/interp_array.py
@@ -119,7 +119,7 @@
     return space.w_False
 
 index_count_jd = jit.JitDriver(
-    greens = ['count', 'tp_item', 'arrclass'],
+    greens = ['count', 'arrclass', 'tp_item'],
     reds = 'auto', name = 'array.index_or_count')
 
 def index_count_array(arr, w_val, count=False):


More information about the pypy-commit mailing list