From bad17e7b176334a3b1dc92a4e496e1f8f4ff34a7 Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Fri, 25 Jan 2008 11:10:11 +0000 Subject: [PATCH] Added comment about sys.maxint to whatsnew. Issue #1930 --- Doc/whatsnew/3.0.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Doc/whatsnew/3.0.rst b/Doc/whatsnew/3.0.rst index 49883b4ed3d..cab9f3b7685 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.