This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author davidlin
Recipients davidlin, docs@python
Date 2018-09-07.06:35:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1536302102.39.0.56676864532.issue34601@psf.upfronthosting.co.za>
In-reply-to
Content
https://docs.python.org/3/library/exceptions.html

exception OverflowError
Raised when the result of an arithmetic operation is too large to be represented. This cannot occur for integers (which would rather raise MemoryError than give up). However, for historical reasons, OverflowError is sometimes raised for integers that are outside a required range. Because of the lack of standardization of floating point exception handling in C, most floating point operations are not checked.

In sentence: "which would rather raise MemoryError than give up", should we use "then" instead of "than"?

Thanks,
David Lin
History
Date User Action Args
2018-09-07 06:35:02davidlinsetrecipients: + davidlin, docs@python
2018-09-07 06:35:02davidlinsetmessageid: <1536302102.39.0.56676864532.issue34601@psf.upfronthosting.co.za>
2018-09-07 06:35:02davidlinlinkissue34601 messages
2018-09-07 06:35:02davidlincreate