summaryrefslogtreecommitdiff
path: root/numpy/core/fromnumeric.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2021-10-04 16:41:09 -0600
committerGitHub <noreply@github.com>2021-10-04 16:41:09 -0600
commitc231c33acd5eae061b62ed8b1bc0dcc221231c42 (patch)
treec32fbb5f9e02fb1dc7f02f6c9ecedc57678153f6 /numpy/core/fromnumeric.py
parent5c3b6977f45b25e8d8354a005ec52855f7e9e6c9 (diff)
parenta0748676e08da4835ff6eccab0f143b28fb6fb81 (diff)
downloadnumpy-c231c33acd5eae061b62ed8b1bc0dcc221231c42.tar.gz
Merge pull request #20027 from BvB93/nanfunc
ENH: Add missing parameters to the `nan<x>` functions
Diffstat (limited to 'numpy/core/fromnumeric.py')
-rw-r--r--numpy/core/fromnumeric.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/numpy/core/fromnumeric.py b/numpy/core/fromnumeric.py
index 29d215ea0..3242124ac 100644
--- a/numpy/core/fromnumeric.py
+++ b/numpy/core/fromnumeric.py
@@ -1144,6 +1144,8 @@ def argmax(a, axis=None, out=None, *, keepdims=np._NoValue):
in the result as dimensions with size one. With this option,
the result will broadcast correctly against the array.
+ .. versionadded:: 1.22.0
+
Returns
-------
index_array : ndarray of ints
@@ -1238,6 +1240,8 @@ def argmin(a, axis=None, out=None, *, keepdims=np._NoValue):
in the result as dimensions with size one. With this option,
the result will broadcast correctly against the array.
+ .. versionadded:: 1.22.0
+
Returns
-------
index_array : ndarray of ints