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 skrah
Recipients garybernhardt, gdr@garethrees.org, josh.r, mark.dickinson, ncoghlan, pitrou, skrah, vstinner
Date 2014-04-10.10:58:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <20140410105838.GA25384@sleipnir.bytereef.org>
In-reply-to <1397101129.67.0.540930114212.issue20539@psf.upfronthosting.co.za>
Content
OverflowError during initialization dates back to the early days of Python:

  http://hg.python.org/cpython/rev/0437738279a8

Integer arithmetic actually did raise OverflowError back then:

>>> 2222222222222 * 22222222222222
Traceback (most recent call last):
  File "<stdin>", line 1, in ?
OverflowError: integer multiplication
>>>

This of course no longer happens, so the whole idea of OverflowError seems
slightly outdated.
History
Date User Action Args
2014-04-10 10:58:39skrahsetrecipients: + skrah, mark.dickinson, ncoghlan, pitrou, vstinner, gdr@garethrees.org, garybernhardt, josh.r
2014-04-10 10:58:39skrahlinkissue20539 messages
2014-04-10 10:58:39skrahcreate