diff options
author | Matti Picus <matti.picus@gmail.com> | 2020-11-21 18:48:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-21 18:48:26 +0200 |
commit | 950c6340164ef502c032d11f50130e4bd270c875 (patch) | |
tree | ad7e48cd2ff08b8d00633c5321440f4a396370f4 /numpy/core/numeric.py | |
parent | e0ffe3572b37190d9da5b1d07057e4e038bd3197 (diff) | |
parent | 254836c570b96b2bb46c414fcf786ee649481670 (diff) | |
download | numpy-950c6340164ef502c032d11f50130e4bd270c875.tar.gz |
Merge pull request #17815 from serge-sans-paille/fix/empty-like-doc
DOC: Fix empty_like docstring
Diffstat (limited to 'numpy/core/numeric.py')
-rw-r--r-- | numpy/core/numeric.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py index 25235f738..c95c48d71 100644 --- a/numpy/core/numeric.py +++ b/numpy/core/numeric.py @@ -95,7 +95,7 @@ def zeros_like(a, dtype=None, order='K', subok=True, shape=None): .. versionadded:: 1.6.0 subok : bool, optional. If True, then the newly created array will use the sub-class - type of 'a', otherwise it will be a base-class array. Defaults + type of `a`, otherwise it will be a base-class array. Defaults to True. shape : int or sequence of ints, optional. Overrides the shape of the result. If order='K' and the number of @@ -237,7 +237,7 @@ def ones_like(a, dtype=None, order='K', subok=True, shape=None): .. versionadded:: 1.6.0 subok : bool, optional. If True, then the newly created array will use the sub-class - type of 'a', otherwise it will be a base-class array. Defaults + type of `a`, otherwise it will be a base-class array. Defaults to True. shape : int or sequence of ints, optional. Overrides the shape of the result. If order='K' and the number of @@ -374,7 +374,7 @@ def full_like(a, fill_value, dtype=None, order='K', subok=True, shape=None): as possible. subok : bool, optional. If True, then the newly created array will use the sub-class - type of 'a', otherwise it will be a base-class array. Defaults + type of `a`, otherwise it will be a base-class array. Defaults to True. shape : int or sequence of ints, optional. Overrides the shape of the result. If order='K' and the number of |