From 9e8c1ad06cfdab3cb8e7f266b31fd677b945e106 Mon Sep 17 00:00:00 2001 From: Julian Taylor Date: Fri, 18 Jul 2014 23:18:54 +0200 Subject: DOC: add ascontiguousarray and asarray_chkfinite to appropriate section added to "Changing kind of array" with the other as* functions Closes gh-4890 --- doc/source/reference/routines.array-manipulation.rst | 2 ++ 1 file changed, 2 insertions(+) (limited to 'doc/source/reference') diff --git a/doc/source/reference/routines.array-manipulation.rst b/doc/source/reference/routines.array-manipulation.rst index ca97bb479..81af0a315 100644 --- a/doc/source/reference/routines.array-manipulation.rst +++ b/doc/source/reference/routines.array-manipulation.rst @@ -54,6 +54,8 @@ Changing kind of array asmatrix asfarray asfortranarray + ascontiguousarray + asarray_chkfinite asscalar require -- cgit v1.2.1 From fa1b71fc4c2ed7dd8015b7b45840f75ea14a3bb2 Mon Sep 17 00:00:00 2001 From: Julian Taylor Date: Wed, 23 Jul 2014 21:12:07 +0200 Subject: DOC: add some missing ma functions to reference closes gh-4898 --- doc/source/reference/routines.ma.rst | 3 +++ 1 file changed, 3 insertions(+) (limited to 'doc/source/reference') diff --git a/doc/source/reference/routines.ma.rst b/doc/source/reference/routines.ma.rst index 5cb38e83f..66bcb1f1c 100644 --- a/doc/source/reference/routines.ma.rst +++ b/doc/source/reference/routines.ma.rst @@ -65,6 +65,8 @@ Inspecting the array ma.nonzero ma.shape ma.size + ma.is_masked + ma.is_mask ma.MaskedArray.data ma.MaskedArray.mask @@ -141,6 +143,7 @@ Joining arrays ma.column_stack ma.concatenate + ma.append ma.dstack ma.hstack ma.vstack -- cgit v1.2.1 From c32d0cb4100084f99c851a314bd9d2722c4ee9f3 Mon Sep 17 00:00:00 2001 From: Julian Taylor Date: Wed, 23 Jul 2014 21:27:49 +0200 Subject: DOC: remove obsolete NA documentation page --- doc/source/reference/routines.maskna.rst | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 doc/source/reference/routines.maskna.rst (limited to 'doc/source/reference') diff --git a/doc/source/reference/routines.maskna.rst b/doc/source/reference/routines.maskna.rst deleted file mode 100644 index 2910acbac..000000000 --- a/doc/source/reference/routines.maskna.rst +++ /dev/null @@ -1,11 +0,0 @@ -NA-Masked Array Routines -======================== - -.. currentmodule:: numpy - -NA Values ---------- -.. autosummary:: - :toctree: generated/ - - isna -- cgit v1.2.1 From b72346e05c91fdea6d61c1f3f9bb712c650e0778 Mon Sep 17 00:00:00 2001 From: Kirill Smelkov Date: Thu, 17 Jul 2014 23:10:17 +0400 Subject: DOC: NPY_ITEM_LISTPICKLE -> NPY_LIST_PICKLE There is no NPY_ITEM_LISTPICKLE - it was NPY_LIST_PICKLE from the beginning - from c3551579 (Expand usage of hasobject to be a flag-like entity keeping track of how the data-type should be used.) The documentation in the same rst file even uses the correct identifier later, so it was just a typo/thinko. --- doc/source/reference/c-api.types-and-structures.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc/source/reference') diff --git a/doc/source/reference/c-api.types-and-structures.rst b/doc/source/reference/c-api.types-and-structures.rst index f1e216a5c..66425cd61 100644 --- a/doc/source/reference/c-api.types-and-structures.rst +++ b/doc/source/reference/c-api.types-and-structures.rst @@ -244,7 +244,7 @@ PyArrayDescr_Type Indicates that items of this data-type must be reference counted (using :cfunc:`Py_INCREF` and :cfunc:`Py_DECREF` ). - .. cvar:: NPY_ITEM_LISTPICKLE + .. cvar:: NPY_LIST_PICKLE Indicates arrays of this data-type must be converted to a list before pickling. -- cgit v1.2.1