Skip to content

Commit

Permalink
DOC: update README
Browse files Browse the repository at this point in the history
  • Loading branch information
ev-br committed Apr 7, 2016
1 parent 136830e commit c2735f3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ array([[ 0., 0., 0., 42.],
To have an array of fixed shape, set the `is_shape_fixed` attribute to ``True``,
or provide the shape explicitly in the constructor:

>>> m = M(shape=(2, 3))
>>> m = M(shape=(2, 3, 4))
>>> m.is_shape_fixed
True
>>> m[4, 5] = 6
>>> m[4, 5, 1] = 6
Traceback (most recent call last)
...
IndexError: index 4 is out of bounds for axis 0 with size 2
Expand Down Expand Up @@ -71,7 +71,7 @@ Installation
This isn't much to package really, so it's just very standard::

$ python setup.py build_ext -i
$ nosetests test_basic.py
$ nosetests sparr/tests


Building requires ``cython`` and ``numpy``, testing needs ``nose``.

0 comments on commit c2735f3

Please sign in to comment.