summaryrefslogtreecommitdiff
path: root/numpy/ma/core.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2013-04-03 16:02:33 -0700
committerCharles Harris <charlesr.harris@gmail.com>2013-04-03 16:02:33 -0700
commitca77e31947b74feded3d69a282e638fa2e9ebf7c (patch)
tree47abbe6403cee151a8439021e0574b4863612c28 /numpy/ma/core.py
parent961a28f828fd7075af1e548a294c1443fdf4a215 (diff)
parent3830fcc99443cd479d4dd3fea5217c75396f9f3f (diff)
downloadnumpy-ca77e31947b74feded3d69a282e638fa2e9ebf7c.tar.gz
Merge pull request #460 from endolith/regex_formatting
DOC: Formatting fixes using regex
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