diff options
author | Eric Wieser <wieser.eric@gmail.com> | 2018-07-31 09:37:37 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-31 09:37:37 -0700 |
commit | 07d96f4a5c8ab3123581d1c2a0d04f86e3f10816 (patch) | |
tree | 00f4cd05227c181017d49f33a35664f6a18c01d1 /numpy/lib/function_base.py | |
parent | aea9eb20898770a0b1b494a2bc646bd46afa5bab (diff) | |
download | numpy-07d96f4a5c8ab3123581d1c2a0d04f86e3f10816.tar.gz |
DOC: Add versionchanged about subclasses
Diffstat (limited to 'numpy/lib/function_base.py')
-rw-r--r-- | numpy/lib/function_base.py | 3 |
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 -------- |