diff options
author | Matti Picus <matti.picus@gmail.com> | 2020-04-04 22:01:58 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-04 22:01:58 +0300 |
commit | 063b3140ec3792f0420da9f386d8240693213ec9 (patch) | |
tree | 6c747b3569735fe89c2b4a57d3d0a5013a78e902 /doc | |
parent | c67396b805291e1a880084e701f160b21d2b4b1d (diff) | |
parent | 3d34de6965b6a8f574e5eb63776904c6ea4b3ab4 (diff) | |
download | numpy-063b3140ec3792f0420da9f386d8240693213ec9.tar.gz |
Merge pull request #15749 from panpiort8/masked_array_docs
DOC: document inconsistency between the shape of data and mask in numpy.ma
Diffstat (limited to 'doc')
-rw-r--r-- | doc/source/reference/maskedarray.baseclass.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/reference/maskedarray.baseclass.rst b/doc/source/reference/maskedarray.baseclass.rst index 57bbaa8f8..5c1bdda23 100644 --- a/doc/source/reference/maskedarray.baseclass.rst +++ b/doc/source/reference/maskedarray.baseclass.rst @@ -33,7 +33,7 @@ defines several constants. Value indicating that a masked array has no invalid entry. :attr:`nomask` is used internally to speed up computations when the mask - is not needed. + is not needed. It is represented internally as ``np.False_``. .. data:: masked_print_options |