[pypy-commit] pypy refactor-signature: merged upstream

alex_gaynor noreply at buildbot.pypy.org
Mon Dec 19 23:05:22 CET 2011


Author: Alex Gaynor <alex.gaynor at gmail.com>
Branch: refactor-signature
Changeset: r50727:f6d18f175eda
Date: 2011-12-19 16:04 -0600
http://bitbucket.org/pypy/pypy/changeset/f6d18f175eda/

Log:	merged upstream

diff --git a/pypy/module/micronumpy/interp_numarray.py b/pypy/module/micronumpy/interp_numarray.py
--- a/pypy/module/micronumpy/interp_numarray.py
+++ b/pypy/module/micronumpy/interp_numarray.py
@@ -1220,6 +1220,7 @@
 
     @jit.unroll_safe
     def __init__(self, arr):
+        arr = arr.get_concrete()
         size = 1
         for sh in arr.shape:
             size *= sh


More information about the pypy-commit mailing list