summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.0.rst
diff options
context:
space:
mode:
authorWalter Dörwald <walter@livinglogic.de>2008-01-25 11:33:18 (GMT)
committerWalter Dörwald <walter@livinglogic.de>2008-01-25 11:33:18 (GMT)
commit32f523ee9418c8ab2bdc91f4ce623de010147ef2 (patch)
tree0c3fa7e7b49e79e555e30d40cb006949979d4eba /Doc/whatsnew/3.0.rst
parent969fe57baa0eb80332990f9cda936a33e13fabef (diff)
downloadcpython-32f523ee9418c8ab2bdc91f4ce623de010147ef2.zip
cpython-32f523ee9418c8ab2bdc91f4ce623de010147ef2.tar.gz
cpython-32f523ee9418c8ab2bdc91f4ce623de010147ef2.tar.bz2
Fix typo.
Diffstat (limited to 'Doc/whatsnew/3.0.rst')
-rw-r--r--Doc/whatsnew/3.0.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.0.rst b/Doc/whatsnew/3.0.rst
index cab9f3b..6026a0f 100644
--- a/Doc/whatsnew/3.0.rst
+++ b/Doc/whatsnew/3.0.rst
@@ -248,7 +248,7 @@ 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
+ ``sys.maxint`` was also removed since the int type has no maximum
value anymore.
* PEP 238: int division returns a float.