diff options
author | jess010 <jfreasier@gmail.com> | 2014-04-17 11:01:47 -0400 |
---|---|---|
committer | jess010 <jfreasier@gmail.com> | 2014-04-17 11:01:47 -0400 |
commit | ac69505acabb347b5afe18f43a6d7a2a8d94bb52 (patch) | |
tree | 76eeebaf07887c2ef0cb71c20c248a075dfdf6d6 | |
parent | 3fd19f236815d63bf7a43886bd0ba4418db3deea (diff) | |
download | numpy-ac69505acabb347b5afe18f43a6d7a2a8d94bb52.tar.gz |
updated for None-npnewaxis alias comment
-rw-r--r-- | doc/source/reference/arrays.indexing.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/source/reference/arrays.indexing.rst b/doc/source/reference/arrays.indexing.rst index d5a7df8b1..d319b5d80 100644 --- a/doc/source/reference/arrays.indexing.rst +++ b/doc/source/reference/arrays.indexing.rst @@ -171,8 +171,8 @@ concepts to remember include: .. data:: newaxis The :const:`newaxis` object can be used in all slicing operations to - create an axis of length one. :const:`None` can also be used instead of - :const:`newaxis`. + create an axis of length one. :const: :const:`newaxis` is an alias for + 'None', and 'None' can be used in place of this with the same result. Advanced indexing |