diff options
author | mattip <matti.picus@gmail.com> | 2019-10-15 18:03:11 +0300 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2019-10-15 18:03:11 +0300 |
commit | efaaa96767e3ca048a3cd01107d811e345e3438c (patch) | |
tree | f222075f650747f7d66115effd05626c27727319 /numpy/ma/core.py | |
parent | 2300ae084b73ab961b7945d7b0bf4ad3162a7ce2 (diff) | |
download | numpy-efaaa96767e3ca048a3cd01107d811e345e3438c.tar.gz |
DOC: convert `None` to bare None or ``None``
Diffstat (limited to 'numpy/ma/core.py')
-rw-r--r-- | numpy/ma/core.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/ma/core.py b/numpy/ma/core.py index 3943cbd19..bb0d8d412 100644 --- a/numpy/ma/core.py +++ b/numpy/ma/core.py @@ -4394,7 +4394,7 @@ class MaskedArray(ndarray): ---------- axis : None or int or tuple of ints, optional Axis or axes along which the count is performed. - The default (`axis` = `None`) performs the count over all + The default, None, performs the count over all the dimensions of the input array. `axis` may be negative, in which case it counts from the last to the first axis. |