summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2021-06-07 13:48:53 -0600
committerGitHub <noreply@github.com>2021-06-07 13:48:53 -0600
commit1769352927f60b86bf183706c887df5a892c6f8f (patch)
treeb0bb33bcbd64537e85c5d24f13e4fe23e84e6085 /numpy
parentdfa9d11cb05f3c2680f6df7a553d722db1b5d42f (diff)
parentcbd0c97bf8ca5148f581c644968b6eb4b11df40d (diff)
downloadnumpy-1769352927f60b86bf183706c887df5a892c6f8f.tar.gz
Merge pull request #19188 from seberg/accept-nep35
NEP: Accept NEP 35 (`like=` keyword for array creation) as final
Diffstat (limited to 'numpy')
-rw-r--r--numpy/core/overrides.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/numpy/core/overrides.py b/numpy/core/overrides.py
index c2b5fb7fa..70085d896 100644
--- a/numpy/core/overrides.py
+++ b/numpy/core/overrides.py
@@ -18,11 +18,7 @@ array_function_like_doc = (
NumPy arrays. If an array-like passed in as ``like`` supports
the ``__array_function__`` protocol, the result will be defined
by it. In this case, it ensures the creation of an array object
- compatible with that passed in via this argument.
-
- .. note::
- The ``like`` keyword is an experimental feature pending on
- acceptance of :ref:`NEP 35 <NEP35>`."""
+ compatible with that passed in via this argument."""
)
def set_array_function_like_doc(public_api):