summaryrefslogtreecommitdiff
path: root/numpy/add_newdocs.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2006-09-04 22:04:31 +0000
committerCharles Harris <charlesr.harris@gmail.com>2006-09-04 22:04:31 +0000
commit0982d6e124e0728e227bda735a19c359900fcc4a (patch)
tree6f5b65fdab92e73fbbdd30fdab350d10280f3ccc /numpy/add_newdocs.py
parent33a5ed76adf630b4ad0f90d02a1dc73d6f086ef8 (diff)
downloadnumpy-0982d6e124e0728e227bda735a19c359900fcc4a.tar.gz
Update ndarray.round docs to match Travis' mods
Diffstat (limited to 'numpy/add_newdocs.py')
-rw-r--r--numpy/add_newdocs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/add_newdocs.py b/numpy/add_newdocs.py
index 3b130c63b..421e01daf 100644
--- a/numpy/add_newdocs.py
+++ b/numpy/add_newdocs.py
@@ -860,7 +860,7 @@ add_newdoc('numpy.core.multiarray', 'ndarray', ('round',
Round to the specified number of decimals. When 'decimals' is negative it
specifies the number of positions to the left of the decimal point. The real
and imaginary parts of complex numbers are rounded separately. Nothing is
- done if the array is not of float type.
+ done if the array is not of float type and 'decimals' is >= 0.
The keyword 'out' may be used to specify a different array to hold the
result rather than the default 'a'. If the type of the array specified by