summaryrefslogtreecommitdiff
path: root/numpy/core/numeric.py
diff options
context:
space:
mode:
authorNathaniel Beaver <nathanielmbeaver@gmail.com>2016-02-01 12:24:46 -0600
committerNathaniel Beaver <nathanielmbeaver@gmail.com>2016-02-01 12:51:19 -0600
commitda10a1cd5eff56af9b83585bf93bbccc21fe2a1d (patch)
tree6de0f55f7fed3648aac49602e4664d7b7b5e6fe9 /numpy/core/numeric.py
parent857c3a8ec160a618a54edd9407f77fbfc2a07678 (diff)
downloadnumpy-da10a1cd5eff56af9b83585bf93bbccc21fe2a1d.tar.gz
DOC: base_repr *can* handle negative integers.
Diffstat (limited to 'numpy/core/numeric.py')
-rw-r--r--numpy/core/numeric.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py
index 756c426f7..a672fdc53 100644
--- a/numpy/core/numeric.py
+++ b/numpy/core/numeric.py
@@ -2198,7 +2198,7 @@ def base_repr(number, base=2, padding=0):
Parameters
----------
number : int
- The value to convert. Only positive values are handled.
+ The value to convert. Positive and negative values are handled.
base : int, optional
Convert `number` to the `base` number system. The valid range is 2-36,
the default value is 2.