diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2018-04-20 12:31:31 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-20 12:31:31 -0600 |
commit | 67b9a768a7e6f373bbba02df302622773559ca4b (patch) | |
tree | fa52e4c8346e5232b76013fe0f69a8a3dd973ff9 /numpy/lib/mixins.py | |
parent | de62ef91ff92a5118cee9c1aa236eb672cc96c84 (diff) | |
parent | 953fbda6c22af1ea0269ed533265268b805e324c (diff) | |
download | numpy-67b9a768a7e6f373bbba02df302622773559ca4b.tar.gz |
Merge pull request #10921 from mattip/percentile-graph
DOC: clear up warnings, fix matplotlib plot
Diffstat (limited to 'numpy/lib/mixins.py')
-rw-r--r-- | numpy/lib/mixins.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/lib/mixins.py b/numpy/lib/mixins.py index 3220f6534..0379ecb1a 100644 --- a/numpy/lib/mixins.py +++ b/numpy/lib/mixins.py @@ -74,8 +74,8 @@ class NDArrayOperatorsMixin(object): It is useful for writing classes that do not inherit from `numpy.ndarray`, but that should support arithmetic and numpy universal functions like - arrays as described in :ref:`A Mechanism for Overriding Ufuncs - <neps.ufunc-overrides>`. + arrays as described in `A Mechanism for Overriding Ufuncs + <../../neps/nep-0013-ufunc-overrides.html>`_. As an trivial example, consider this implementation of an ``ArrayLike`` class that simply wraps a NumPy array and ensures that the result of any |