]> granicus.if.org Git - python/commitdiff
Added comment about sys.maxint to whatsnew. Issue #1930
authorChristian Heimes <christian@cheimes.de>
Fri, 25 Jan 2008 11:10:11 +0000 (11:10 +0000)
committerChristian Heimes <christian@cheimes.de>
Fri, 25 Jan 2008 11:10:11 +0000 (11:10 +0000)
Doc/whatsnew/3.0.rst

index 49883b4ed3d1a485655f5a4959e9907798386b09..cab9f3b768598a05110b11a85bbf2672662a05c9 100644 (file)
@@ -248,6 +248,8 @@ language and built-in functions.
   built-in integral type, named ``int``; but it behaves like the old
   ``long`` type, with the exception that the literal suffix ``L`` is
   neither supported by the parser nor produced by ``repr()`` anymore.
+  ``sys.maxint`` was also removed since the int type has maximum
+  value anymore. 
 
 * PEP 238: int division returns a float.