summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWarren Weckesser <warren.weckesser@gmail.com>2020-03-22 19:24:01 -0400
committerGitHub <noreply@github.com>2020-03-22 19:24:01 -0400
commit5b126f882bc90a22f7fe20518f727eafe8238d86 (patch)
treec4900f1b63a706b04b6c4254efb552f562cf6218
parentbcce3ac27e05ffd10584c3c8c666dade21714d1f (diff)
parent7ccadc342e8eb519873fa330fd57a97ebe6c575f (diff)
downloadnumpy-5b126f882bc90a22f7fe20518f727eafe8238d86.tar.gz
Merge pull request #15803 from person142/ufunc-extobj
DOC: correct possible list lengths for `extobj` in ufunc calls
-rw-r--r--doc/source/reference/ufuncs.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/source/reference/ufuncs.rst b/doc/source/reference/ufuncs.rst
index 20c89e0b3..aad285122 100644
--- a/doc/source/reference/ufuncs.rst
+++ b/doc/source/reference/ufuncs.rst
@@ -441,13 +441,13 @@ advanced usage and will not typically be used.
*extobj*
- a list of length 1, 2, or 3 specifying the ufunc buffer-size, the
- error mode integer, and the error call-back function. Normally, these
+ a list of length 3 specifying the ufunc buffer-size, the error
+ mode integer, and the error call-back function. Normally, these
values are looked up in a thread-specific dictionary. Passing them
here circumvents that look up and uses the low-level specification
- provided for the error mode. This may be useful, for example, as an
- optimization for calculations requiring many ufunc calls on small arrays
- in a loop.
+ provided for the error mode. This may be useful, for example, as
+ an optimization for calculations requiring many ufunc calls on
+ small arrays in a loop.