From 9e7f462b0dc386a856ec07c21876b07016c9258b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20=C4=8Cert=C3=ADk?= Date: Mon, 31 Dec 2012 13:35:05 -0800 Subject: DOC: Add missing minus sign The int64 data type allows numbers from -9223372036854775808 to 9223372036854775807. The minus sign was missing. --- numpy/doc/basics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'numpy/doc/basics.py') 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) -- cgit v1.2.1