diff options
author | Ondřej Čertík <ondrej.certik@gmail.com> | 2012-12-31 13:35:05 -0800 |
---|---|---|
committer | Ondřej Čertík <ondrej.certik@gmail.com> | 2012-12-31 13:35:05 -0800 |
commit | 9e7f462b0dc386a856ec07c21876b07016c9258b (patch) | |
tree | b6e6c3f81fc723c17620e74d9a71385283834140 /numpy/doc/basics.py | |
parent | a457fd2a2a8bcd99c7e4a25c56051de46dc06525 (diff) | |
download | numpy-9e7f462b0dc386a856ec07c21876b07016c9258b.tar.gz |
DOC: Add missing minus sign
The int64 data type allows numbers from -9223372036854775808 to
9223372036854775807. The minus sign was missing.
Diffstat (limited to 'numpy/doc/basics.py')
-rw-r--r-- | numpy/doc/basics.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/doc/basics.py b/numpy/doc/basics.py index 97e982204..1d0f183e3 100644 --- a/numpy/doc/basics.py +++ b/numpy/doc/basics.py @@ -17,7 +17,7 @@ int Platform integer (normally either ``int32`` or ``int64``) int8 Byte (-128 to 127) int16 Integer (-32768 to 32767) int32 Integer (-2147483648 to 2147483647) -int64 Integer (9223372036854775808 to 9223372036854775807) +int64 Integer (-9223372036854775808 to 9223372036854775807) uint8 Unsigned integer (0 to 255) uint16 Unsigned integer (0 to 65535) uint32 Unsigned integer (0 to 4294967295) |