diff options
author | Stephan Hoyer <shoyer@gmail.com> | 2018-10-28 14:48:37 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-28 14:48:37 -0700 |
commit | dd14431323fdca18d76ee1b99a28d8e2308abea5 (patch) | |
tree | 31b70e9c1607a135de934e572dc7dd891d485621 | |
parent | 45718fd73bc286e127772ee455d721d9a58665b3 (diff) | |
parent | 2b0c39e4711a04aadacb5850dbdd811c495214fe (diff) | |
download | numpy-dd14431323fdca18d76ee1b99a28d8e2308abea5.tar.gz |
Merge pull request #12281 from shoyer/nep-27-note-revision
NEP: revise note for NEP 27
-rw-r--r-- | doc/neps/nep-0027-zero-rank-arrarys.rst | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/doc/neps/nep-0027-zero-rank-arrarys.rst b/doc/neps/nep-0027-zero-rank-arrarys.rst index 11ea44dbd..b2dd3a5f1 100644 --- a/doc/neps/nep-0027-zero-rank-arrarys.rst +++ b/doc/neps/nep-0027-zero-rank-arrarys.rst @@ -7,15 +7,16 @@ NEP 27 — Zero Rank Arrays :Type: Informational :Created: 2006-06-10 -Abstract --------- +.. note :: -NumPy has both zero rank arrays and scalars. This design document, adapted from -a `2006 wiki entry`_, describes what zero rank arrays are and why they exist. -It was transcribed 2018-10-13 into a NEP and links were updated. + NumPy has both zero rank arrays and scalars. This design document, adapted + from a `2006 wiki entry`_, describes what zero rank arrays are and why they + exist. It was transcribed 2018-10-13 into a NEP and links were updated. + The pull request sparked `a lively discussion`_ about the continued need + for zero rank arrays and scalars in NumPy. -Note that some of the information here is dated, for instance indexing of 0-D -arrays now is now implemented and does not error. + Some of the information here is dated, for instance indexing of 0-D arrays + now is now implemented and does not error. Zero-Rank Arrays ---------------- @@ -249,3 +250,4 @@ The original document appeared on the scipy.org wiki, with no Copyright notice, .. _`9024ff0`: https://github.com/numpy/numpy/commit/9024ff0dc052888b5922dde0f3e615607a9e99d7 .. _`743d922`: https://github.com/numpy/numpy/commit/743d922bf5893acf00ac92e823fe12f460726f90 .. _`b32744e`: https://github.com/numpy/numpy/commit/b32744e3fc5b40bdfbd626dcc1f72907d77c01c4 +.. _`a lively discussion`: https://github.com/numpy/numpy/pull/12166 |