[pypy-commit] pypy dtypes-compatability: whoops

mattip noreply at buildbot.pypy.org
Fri Jul 10 09:10:15 CEST 2015


Author: mattip <matti.picus at gmail.com>
Branch: dtypes-compatability
Changeset: r78520:36b54ccd3df4
Date: 2015-07-09 01:25 +0300
http://bitbucket.org/pypy/pypy/changeset/36b54ccd3df4/

Log:	whoops

diff --git a/pypy/module/micronumpy/descriptor.py b/pypy/module/micronumpy/descriptor.py
--- a/pypy/module/micronumpy/descriptor.py
+++ b/pypy/module/micronumpy/descriptor.py
@@ -817,7 +817,8 @@
         alignment = 0
     else:
         alignment = -1
-    return make_new_dtype(space, w_subtype, w_dtype, alignment, copy=copy, w_shape=w_shape, w_metadata=None)
+    return make_new_dtype(space, w_subtype, w_dtype, alignment, copy=copy,
+                          w_shape=w_shape, w_metadata=w_metadata)
 
 def make_new_dtype(space, w_subtype, w_dtype, alignment, copy=False, w_shape=None, w_metadata=None):
     cache = get_dtype_cache(space)


More information about the pypy-commit mailing list