summaryrefslogtreecommitdiff
path: root/numpy/lib/function_base.py
diff options
context:
space:
mode:
authorEric Wieser <wieser.eric@gmail.com>2018-07-31 09:37:37 -0700
committerGitHub <noreply@github.com>2018-07-31 09:37:37 -0700
commit07d96f4a5c8ab3123581d1c2a0d04f86e3f10816 (patch)
tree00f4cd05227c181017d49f33a35664f6a18c01d1 /numpy/lib/function_base.py
parentaea9eb20898770a0b1b494a2bc646bd46afa5bab (diff)
downloadnumpy-07d96f4a5c8ab3123581d1c2a0d04f86e3f10816.tar.gz
DOC: Add versionchanged about subclasses
Diffstat (limited to 'numpy/lib/function_base.py')
-rw-r--r--numpy/lib/function_base.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py
index 81eedae94..ddf046a73 100644
--- a/numpy/lib/function_base.py
+++ b/numpy/lib/function_base.py
@@ -1325,6 +1325,9 @@ def angle(z, deg=False):
angle : ndarray or scalar
The counterclockwise angle from the positive real axis on
the complex plane, with dtype as numpy.float64.
+
+ ..versionchanged:: 1.16.0
+ This function works on subclasses of ndarray like `ma.array`.
See Also
--------