summaryrefslogtreecommitdiffstats
path: root/Doc/library/exceptions.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-11-29 17:24:34 (GMT)
committerGeorg Brandl <georg@python.org>2007-11-29 17:24:34 (GMT)
commitba956aebb96c38f1b8818189ed6ab18d5441313a (patch)
tree8cd8aba4cf4559f7e8e2086ea9ad05b4be91187f /Doc/library/exceptions.rst
parent0db38532b304c89a998e4fc53b3ac8cd7ff23a8a (diff)
downloadcpython-ba956aebb96c38f1b8818189ed6ab18d5441313a.zip
cpython-ba956aebb96c38f1b8818189ed6ab18d5441313a.tar.gz
cpython-ba956aebb96c38f1b8818189ed6ab18d5441313a.tar.bz2
Remove mentions of "long integer" in the docs.
Credits to HappySmileMan from GHOP.
Diffstat (limited to 'Doc/library/exceptions.rst')
-rw-r--r--Doc/library/exceptions.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/exceptions.rst b/Doc/library/exceptions.rst
index 9453b7a..5620b1b 100644
--- a/Doc/library/exceptions.rst
+++ b/Doc/library/exceptions.rst
@@ -217,7 +217,7 @@ The following exceptions are the exceptions that are actually raised.
.. exception:: OverflowError
Raised when the result of an arithmetic operation is too large to be
- represented. This cannot occur for long integers (which would rather raise
+ represented. This cannot occur for integers (which would rather raise
:exc:`MemoryError` than give up). Because of the lack of standardization of
floating point exception handling in C, most floating point operations also
aren't checked.