[pypy-commit] pypy default: fix broken merge

fijal noreply at buildbot.pypy.org
Tue May 28 16:01:11 CEST 2013


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: 
Changeset: r64619:f5f6bc6f2837
Date: 2013-05-28 16:00 +0200
http://bitbucket.org/pypy/pypy/changeset/f5f6bc6f2837/

Log:	fix broken merge

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
@@ -1051,7 +1051,7 @@
 def _reconstruct(space, w_subtype, w_shape, w_dtype):
     return descr_new_array(space, w_subtype, w_shape, w_dtype)
 
- def build_scalar(space, w_dtype, w_state):
+def build_scalar(space, w_dtype, w_state):
     from rpython.rtyper.lltypesystem import rffi, lltype
 
     assert isinstance(w_dtype, interp_dtype.W_Dtype)


More information about the pypy-commit mailing list