summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2008-01-25 11:10:11 (GMT)
committerChristian Heimes <christian@cheimes.de>2008-01-25 11:10:11 (GMT)
commitbad17e7b176334a3b1dc92a4e496e1f8f4ff34a7 (patch)
treef779aba7b8c628f8cda15034dfe7a841963a66d2 /Doc/whatsnew
parentf534f7b74a4607115bf3de266a5cb13cc47977fd (diff)
downloadcpython-bad17e7b176334a3b1dc92a4e496e1f8f4ff34a7.zip
cpython-bad17e7b176334a3b1dc92a4e496e1f8f4ff34a7.tar.gz
cpython-bad17e7b176334a3b1dc92a4e496e1f8f4ff34a7.tar.bz2
Added comment about sys.maxint to whatsnew. Issue #1930
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.0.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.0.rst b/Doc/whatsnew/3.0.rst
index 49883b4..cab9f3b 100644
--- a/Doc/whatsnew/3.0.rst
+++ b/Doc/whatsnew/3.0.rst
@@ -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.