summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2018-02-15 19:14:59 -0700
committerGitHub <noreply@github.com>2018-02-15 19:14:59 -0700
commit5c5a215fa1101479ae9b8d127be32679c9f3f105 (patch)
treec473ef2ec5971c1525a406e63a22189fc48023bc /numpy
parent69fa37f422c845655492220440735e7c800306b8 (diff)
parentb17fc16c248a54777dbf7731aa57af6f42881390 (diff)
downloadnumpy-5c5a215fa1101479ae9b8d127be32679c9f3f105.tar.gz
Merge pull request #10596 from charris/update-sphinxext-submodule
DOC: Update sphinxext submodule hash.
Diffstat (limited to 'numpy')
-rw-r--r--numpy/ma/core.py12
1 files changed, 7 insertions, 5 deletions
diff --git a/numpy/ma/core.py b/numpy/ma/core.py
index 9223c5705..698d39cda 100644
--- a/numpy/ma/core.py
+++ b/numpy/ma/core.py
@@ -131,6 +131,12 @@ def doc_note(initialdoc, note):
return
if note is None:
return initialdoc
+
+ # FIXME: disable this function for the moment until we figure out what to
+ # do with it. Currently it may result in duplicate Notes sections or Notes
+ # sections in the wrong place
+ return initialdoc
+
newdoc = """
%s
@@ -7472,11 +7478,7 @@ def inner(a, b):
Returns the inner product of a and b for arrays of floating point types.
Like the generic NumPy equivalent the product sum is over the last dimension
- of a and b.
-
- Notes
- -----
- The first argument is not conjugated.
+ of a and b. The first argument is not conjugated.
"""
fa = filled(a, 0)