[Python-3000-checkins] r59523 - python/branches/py3k/Doc/library/sys.rst

georg.brandl python-3000-checkins at python.org
Sat Dec 15 10:55:35 CET 2007


Author: georg.brandl
Date: Sat Dec 15 10:55:35 2007
New Revision: 59523

Modified:
   python/branches/py3k/Doc/library/sys.rst
Log:
Fix sys.maxsize docs.


Modified: python/branches/py3k/Doc/library/sys.rst
==============================================================================
--- python/branches/py3k/Doc/library/sys.rst	(original)
+++ python/branches/py3k/Doc/library/sys.rst	Sat Dec 15 10:55:35 2007
@@ -367,10 +367,11 @@
 
 .. 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


More information about the Python-3000-checkins mailing list