summaryrefslogtreecommitdiff
path: root/numpy/add_newdocs.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2016-10-21 22:07:09 -0400
committerGitHub <noreply@github.com>2016-10-21 22:07:09 -0400
commit40676b8f397be96f70349e45ae9c48c7f97dbcb6 (patch)
treedb0affccff187ff647ac307ba931e095b9d71e4e /numpy/add_newdocs.py
parent6790bf80c4833cada74a41a85cff339118ef48ca (diff)
parentf1aaff1948dfb3e008bb20ef5442bf0118104f4d (diff)
downloadnumpy-40676b8f397be96f70349e45ae9c48c7f97dbcb6.tar.gz
Merge pull request #8197 from eric-wieser/document-outer
DOC: Add missing arguments to np.ufunc.outer
Diffstat (limited to 'numpy/add_newdocs.py')
-rw-r--r--numpy/add_newdocs.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/numpy/add_newdocs.py b/numpy/add_newdocs.py
index 62faf09fe..78c1760ac 100644
--- a/numpy/add_newdocs.py
+++ b/numpy/add_newdocs.py
@@ -5896,7 +5896,7 @@ add_newdoc('numpy.core', 'ufunc', ('reduceat',
add_newdoc('numpy.core', 'ufunc', ('outer',
"""
- outer(A, B)
+ outer(A, B, **kwargs)
Apply the ufunc `op` to all pairs (a, b) with a in `A` and b in `B`.
@@ -5919,6 +5919,8 @@ add_newdoc('numpy.core', 'ufunc', ('outer',
First array
B : array_like
Second array
+ kwargs : any
+ Arguments to pass on to the ufunc. Typically `dtype` or `out`.
Returns
-------