summaryrefslogtreecommitdiff
path: root/numpy/core/multiarray.py
diff options
context:
space:
mode:
authorStephan Hoyer <shoyer@google.com>2018-12-01 12:50:31 -0800
committerStephan Hoyer <shoyer@google.com>2018-12-01 12:50:31 -0800
commite5b43d2fb4d58b3ba72ce71010216da2ca1c1116 (patch)
tree2902592c631d4cbd05da6a119a680f04c0ba723b /numpy/core/multiarray.py
parentbc143e02a20a23ca8c1b426f41201160eca0e376 (diff)
downloadnumpy-e5b43d2fb4d58b3ba72ce71010216da2ca1c1116.tar.gz
DOC: add docs_from_dispatcher to docstring
Diffstat (limited to 'numpy/core/multiarray.py')
-rw-r--r--numpy/core/multiarray.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/multiarray.py b/numpy/core/multiarray.py
index a82f4df22..083cca9b1 100644
--- a/numpy/core/multiarray.py
+++ b/numpy/core/multiarray.py
@@ -64,7 +64,7 @@ zeros.__module__ = 'numpy'
# support introspection.
array_function_from_c_func_and_dispatcher = functools.partial(
overrides.array_function_from_dispatcher,
- module='numpy', copy_docs=True, verify=False)
+ module='numpy', docs_from_dispatcher=True, verify=False)
@array_function_from_c_func_and_dispatcher(_multiarray_umath.empty_like)