[Python-checkins] r87522 - python/branches/py3k/Doc/library/functions.rst

georg.brandl python-checkins at python.org
Tue Dec 28 10:16:12 CET 2010


Author: georg.brandl
Date: Tue Dec 28 10:16:12 2010
New Revision: 87522

Log:
Replace sys.maxint mention by sys.maxsize.

Modified:
   python/branches/py3k/Doc/library/functions.rst

Modified: python/branches/py3k/Doc/library/functions.rst
==============================================================================
--- python/branches/py3k/Doc/library/functions.rst	(original)
+++ python/branches/py3k/Doc/library/functions.rst	Tue Dec 28 10:16:12 2010
@@ -1049,7 +1049,7 @@
       >>> r[-1]
       18
 
-   Ranges containing absolute values larger than ``sys.maxint`` are permitted
+   Ranges containing absolute values larger than :data:`sys.maxsize` are permitted
    but some features (such as :func:`len`) will raise :exc:`OverflowError`.
 
    .. versionchanged:: 3.2


More information about the Python-checkins mailing list