diff options
author | Julian Taylor <juliantaylor108@gmail.com> | 2014-07-16 22:12:40 +0200 |
---|---|---|
committer | Julian Taylor <juliantaylor108@gmail.com> | 2014-07-16 22:12:40 +0200 |
commit | 4e41192f2e78f87b4a6b91230b7236c138963fe4 (patch) | |
tree | 15db8111d7f897551f3b41d118d03d11719b9b42 | |
parent | bd2d8df922378f3be2252a0aa8b23972f01295ae (diff) | |
parent | 3f600221e7ca2e7f24f665b8517d1fb678a6c33e (diff) | |
download | numpy-4e41192f2e78f87b4a6b91230b7236c138963fe4.tar.gz |
Merge pull request #4870 from juliantaylor/linspace-version-doc
DOC: add version added tag to new linspace dtype argument
-rw-r--r-- | numpy/core/function_base.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/core/function_base.py b/numpy/core/function_base.py index 400e75eb5..0bf93390e 100644 --- a/numpy/core/function_base.py +++ b/numpy/core/function_base.py @@ -36,6 +36,8 @@ def linspace(start, stop, num=50, endpoint=True, retstep=False, dtype=None): The type of the output array. If `dtype` is not given, infer the data type from the other input arguments. + .. versionadded:: 1.9.0 + Returns ------- samples : ndarray |