summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/release/upcoming_changes/16022.improvement.rst9
1 files changed, 0 insertions, 9 deletions
diff --git a/doc/release/upcoming_changes/16022.improvement.rst b/doc/release/upcoming_changes/16022.improvement.rst
deleted file mode 100644
index 0616163b9..000000000
--- a/doc/release/upcoming_changes/16022.improvement.rst
+++ /dev/null
@@ -1,9 +0,0 @@
-MaskedArray gains a ``__array_ufunc__`` method to better handle ufuncs
-----------------------------------------------------------------------
-The MaskedArray class now has an implementation of `__array_ufunc__` that
-handles deferrals to the desired implementations of the ufunc. If a masked
-implementation of a ufunc exists, that implementation will take priority.
-This means that code called with MaskedArray ma as ``np.ufunc(ma)`` will
-behave the same as ``np.ma.ufunc(ma)``. Additionally, adding this helps with
-dispatching to subclasses and preserving the proper types when another
-implementation should take priority.