diff options
author | Stephan Hoyer <shoyer@google.com> | 2018-12-01 12:50:31 -0800 |
---|---|---|
committer | Stephan Hoyer <shoyer@google.com> | 2018-12-01 12:50:31 -0800 |
commit | e5b43d2fb4d58b3ba72ce71010216da2ca1c1116 (patch) | |
tree | 2902592c631d4cbd05da6a119a680f04c0ba723b /numpy/core/multiarray.py | |
parent | bc143e02a20a23ca8c1b426f41201160eca0e376 (diff) | |
download | numpy-e5b43d2fb4d58b3ba72ce71010216da2ca1c1116.tar.gz |
DOC: add docs_from_dispatcher to docstring
Diffstat (limited to 'numpy/core/multiarray.py')
-rw-r--r-- | numpy/core/multiarray.py | 2 |
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) |