From f1aaff1948dfb3e008bb20ef5442bf0118104f4d Mon Sep 17 00:00:00 2001 From: Eric Wieser Date: Thu, 20 Oct 2016 15:36:41 +0100 Subject: DOC: Add missing arguments to np.ufunc.outer --- numpy/add_newdocs.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'numpy/add_newdocs.py') 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 ------- -- cgit v1.2.1