[pypy-commit] pypy numpy-multidim-shards: fix signatures

fijal noreply at buildbot.pypy.org
Sun Nov 20 16:23:43 CET 2011


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: numpy-multidim-shards
Changeset: r49579:09220a3f29a0
Date: 2011-11-20 17:23 +0200
http://bitbucket.org/pypy/pypy/changeset/09220a3f29a0/

Log:	fix signatures

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
@@ -760,7 +760,7 @@
     def start_iter(self, res_shape=None):
         return ConstantIterator()
 
-    def to_str(self, space, comma, builder, indent=' '):
+    def to_str(self, space, comma, builder, indent=' ', use_ellipsis=False):
         builder.append(self.dtype.str_format(self.value))
 
 class VirtualArray(BaseArray):


More information about the pypy-commit mailing list