diff options
Diffstat (limited to 'Doc/library/exceptions.rst')
-rw-r--r-- | Doc/library/exceptions.rst | 2 |
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. |