summaryrefslogtreecommitdiff
path: root/numpy/lib/mixins.py
diff options
context:
space:
mode:
authorStephan Hoyer <shoyer@google.com>2018-03-04 16:13:56 -0800
committerStephan Hoyer <shoyer@google.com>2018-03-04 16:13:56 -0800
commit59fa7d3521dc9f27e70df7966ff1c8bc1c5d34a7 (patch)
treefb18e2214e8923ba85c4a82e12aded85531bb63e /numpy/lib/mixins.py
parent4d4f58a4fb7d208a0a9c9e4677094899383d03b9 (diff)
downloadnumpy-59fa7d3521dc9f27e70df7966ff1c8bc1c5d34a7.tar.gz
DOC: add versionadded for NDArrayOperatorsMixin.
Diffstat (limited to 'numpy/lib/mixins.py')
-rw-r--r--numpy/lib/mixins.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/lib/mixins.py b/numpy/lib/mixins.py
index fbdc2edfb..3220f6534 100644
--- a/numpy/lib/mixins.py
+++ b/numpy/lib/mixins.py
@@ -137,6 +137,8 @@ class NDArrayOperatorsMixin(object):
Note that unlike ``numpy.ndarray``, ``ArrayLike`` does not allow operations
with arbitrary, unrecognized types. This ensures that interactions with
ArrayLike preserve a well-defined casting hierarchy.
+
+ .. versionadded:: 1.13
"""
# Like np.ndarray, this mixin class implements "Option 1" from the ufunc
# overrides NEP.