Author: Maciej Fijalkowski <fij...@gmail.com> Branch: numpy-multidim Changeset: r48966:24afd34cee15 Date: 2011-11-08 19:02 +0100 http://bitbucket.org/pypy/pypy/changeset/24afd34cee15/
Log: a skipped test diff --git a/pypy/module/micronumpy/test/test_numarray.py b/pypy/module/micronumpy/test/test_numarray.py --- a/pypy/module/micronumpy/test/test_numarray.py +++ b/pypy/module/micronumpy/test/test_numarray.py @@ -742,6 +742,14 @@ a = array([[1, 2], [3, 4], [5, 6], [7, 8], [9, 10]]) assert (a + a)[1, 1] == 8 + def test_broadcast(self): + skip("not working") + import numpy + a = numpy.zeros((100, 100)) + b = numpy.ones(100) + a[:,:] = b + assert a[13,15] == 1 + class AppTestSupport(object): def setup_class(cls): import struct _______________________________________________ pypy-commit mailing list pypy-commit@python.org http://mail.python.org/mailman/listinfo/pypy-commit