diff options
author | Matt Williams <matt@milliams.com> | 2022-09-05 14:30:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-05 14:30:13 +0100 |
commit | f9b2945a6c1233fbebaefb01a6ccf72e14c49d27 (patch) | |
tree | ba8b47fc44b4b6ef7b7711af8e845df6eb9be750 /numpy/core/numeric.py | |
parent | 2a6daf39cc4fd895ab803edf018907cb8044f821 (diff) | |
download | numpy-f9b2945a6c1233fbebaefb01a6ccf72e14c49d27.tar.gz |
DOC: Clarify that `like` is not passed to `function`
Diffstat (limited to 'numpy/core/numeric.py')
-rw-r--r-- | numpy/core/numeric.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py index 352f43251..092e42470 100644 --- a/numpy/core/numeric.py +++ b/numpy/core/numeric.py @@ -1836,7 +1836,7 @@ def fromfunction(function, shape, *, dtype=float, like=None, **kwargs): Notes ----- - Keywords other than `dtype` are passed to `function`. + Keywords other than `dtype` and `like` are passed to `function`. Examples -------- |