]> granicus.if.org Git - python/commitdiff
Fix sys.maxsize docs.
authorGeorg Brandl <georg@python.org>
Sat, 15 Dec 2007 09:55:35 +0000 (09:55 +0000)
committerGeorg Brandl <georg@python.org>
Sat, 15 Dec 2007 09:55:35 +0000 (09:55 +0000)
Doc/library/sys.rst

index 3fc86e4df24072b07d486e5182b4c5dd30b3ff7a..368bd4cf2e90074d2a0b99472eec053c92f01b0f 100644 (file)
@@ -367,10 +367,11 @@ always available.
 
 .. data:: maxsize
 
-   An integer giving the size of ``Py_ssize_t``. It's usually 2**31-1 on a 32
-   bit platform and 2**63-1 on a 64bit platform.
+   An integer giving the maximum value a variable of type :ctype:`Py_ssize_t` can
+   take.  It's usually ``2**31 - 1`` on a 32-bit platform and ``2**63 - 1`` on a
+   64-bit platform.
 
-   ..versionadded:: 3.0
+   .. versionadded:: 3.0
 
 
 .. data:: maxunicode