diff options
author | Mark Wiebe <mwwiebe@gmail.com> | 2011-01-18 20:14:07 -0800 |
---|---|---|
committer | Mark Wiebe <mwwiebe@gmail.com> | 2011-01-18 20:14:07 -0800 |
commit | fe08a916cf275ecd21c1b32b22aa3b8d2ca36b33 (patch) | |
tree | 9152ffd94f604eb6df73014ad07881fa6539a163 /numpy/add_newdocs.py | |
parent | 5387da5247baa2a286b8cfcf5e0e5e16c531d38d (diff) | |
download | numpy-fe08a916cf275ecd21c1b32b22aa3b8d2ca36b33.tar.gz |
ENH: iter: Switch the iterator to use PyArray_ResultType
Diffstat (limited to 'numpy/add_newdocs.py')
-rw-r--r-- | numpy/add_newdocs.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/add_newdocs.py b/numpy/add_newdocs.py index 0f58f66a2..db84046cb 100644 --- a/numpy/add_newdocs.py +++ b/numpy/add_newdocs.py @@ -1275,8 +1275,8 @@ add_newdoc('numpy.core.multiarray', 'min_scalar_type', min_scalar_type(a) For scalar ``a``, returns the data type with the smallest size - and smallest scalar kind which can hold its value. For vector ``a``, - returns the vector's dtype unmodified. + and smallest scalar kind which can hold its value. For non-scalar + array ``a``, returns the vector's dtype unmodified. As a special case, floating point values are not reduced to integers. |