[pypy-commit] pypy default: typo

mattip noreply at buildbot.pypy.org
Tue Feb 12 16:28:02 CET 2013


Author: mattip
Branch: 
Changeset: r61137:24d0ce574830
Date: 2013-02-12 17:25 +0200
http://bitbucket.org/pypy/pypy/changeset/24d0ce574830/

Log:	typo

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
@@ -1603,7 +1603,7 @@
         arr = interp_boxes.VoidBoxStorage(len(arg), new_string_dtype(space, len(arg)))
         for i in range(len(arg)):
             arr.storage[i] = arg[i]
-        return interp_boxes.W_StringBox(arr,  0, arg.dtype)
+        return interp_boxes.W_StringBox(arr,  0, arr.dtype)
 
     @jit.unroll_safe
     def store(self, arr, i, offset, box):


More information about the pypy-commit mailing list