summaryrefslogtreecommitdiff
path: root/numpy/ma/core.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/ma/core.py')
-rw-r--r--numpy/ma/core.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/numpy/ma/core.py b/numpy/ma/core.py
index 3299262d1..3c7206e1c 100644
--- a/numpy/ma/core.py
+++ b/numpy/ma/core.py
@@ -630,7 +630,6 @@ def getdata(a, subok=True):
Examples
--------
-
>>> import numpy.ma as ma
>>> a = ma.masked_equal([[1,2],[3,4]], 2)
>>> a
@@ -1263,7 +1262,6 @@ def getmask(a):
Examples
--------
-
>>> import numpy.ma as ma
>>> a = ma.masked_equal([[1,2],[3,4]], 2)
>>> a
@@ -1325,7 +1323,6 @@ def getmaskarray(arr):
Examples
--------
-
>>> import numpy.ma as ma
>>> a = ma.masked_equal([[1,2],[3,4]], 2)
>>> a
@@ -1533,7 +1530,7 @@ def make_mask_none(newshape, dtype=None):
----------
newshape : tuple
A tuple indicating the shape of the mask.
- dtype: {None, dtype}, optional
+ dtype : {None, dtype}, optional
If None, use a MaskType instance. Otherwise, use a new datatype with
the same fields as `dtype`, converted to boolean types.
@@ -5653,7 +5650,7 @@ class mvoid(MaskedArray):
Returns
-------
- filled_void:
+ filled_void
A `np.void` object
See Also