diff options
author | Sebastian Berg <sebastianb@nvidia.com> | 2023-01-17 18:44:18 +0100 |
---|---|---|
committer | Sebastian Berg <sebastianb@nvidia.com> | 2023-01-17 18:46:10 +0100 |
commit | 2403dbea944a8b0628a9ec44cf630e01566cc989 (patch) | |
tree | e5e483948499c81f23d1b15de429a9a19891abbb /numpy/core/overrides.py | |
parent | d67baad8aab0c14ec24f516a8919bb32f58b1973 (diff) | |
download | numpy-2403dbea944a8b0628a9ec44cf630e01566cc989.tar.gz |
DOC: Adept internal docs a bit based on review
Diffstat (limited to 'numpy/core/overrides.py')
-rw-r--r-- | numpy/core/overrides.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/numpy/core/overrides.py b/numpy/core/overrides.py index 25892d5de..e93ef5d88 100644 --- a/numpy/core/overrides.py +++ b/numpy/core/overrides.py @@ -49,8 +49,10 @@ add_docstring( ``_ArrayFunctionDispatcher`` must be called with ``like`` as the first (additional and positional) argument. implementation : function - Function that implements the operation on NumPy array without - overrides when called like. + Function that implements the operation on NumPy arrays without + overrides. Arguments passed calling the ``_ArrayFunctionDispatcher`` + will be forwarded to this (and the ``dispatcher``) as if using + ``*args, **kwargs``. Attributes ---------- |