|
|||||||||||
Python Error Code: OverflowErrorError Description: Raised when the result of an arithmetic operation is too large to be represented. This cannot occur for long integers (which would rather raise 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. For plain integers, all operations that can overflow are checked except left shift, where typical applications prefer to drop bits than raise an exception.Comments:
SOURCE: Python Documentation ONLINE RESOURCES: Python Programming Language Official Website Python Downloads Python Mailing Lists, Newsgroups, and Web Forums |
|||||||||||