diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2016-10-21 22:07:09 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-21 22:07:09 -0400 |
commit | 40676b8f397be96f70349e45ae9c48c7f97dbcb6 (patch) | |
tree | db0affccff187ff647ac307ba931e095b9d71e4e /numpy/add_newdocs.py | |
parent | 6790bf80c4833cada74a41a85cff339118ef48ca (diff) | |
parent | f1aaff1948dfb3e008bb20ef5442bf0118104f4d (diff) | |
download | numpy-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.py | 4 |
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 ------- |