Author: Brian Kearns <[email protected]>
Branch: 
Changeset: r68505:70c1284ebcc9
Date: 2013-12-19 22:57 -0500
http://bitbucket.org/pypy/pypy/changeset/70c1284ebcc9/

Log:    fix translation (odd?)

diff --git a/pypy/module/micronumpy/interp_dtype.py 
b/pypy/module/micronumpy/interp_dtype.py
--- a/pypy/module/micronumpy/interp_dtype.py
+++ b/pypy/module/micronumpy/interp_dtype.py
@@ -169,7 +169,7 @@
                     subdescr.append(subdtype.descr_get_str(space))
                 if subdtype.shape != []:
                     subdescr.append(subdtype.descr_get_shape(space))
-                descr.append(space.newtuple(subdescr))
+                descr.append(space.newtuple(subdescr[:]))
             return space.newlist(descr)
 
     def descr_get_base(self, space):
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to