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 vstinner
Recipients hakril, mark.dickinson, r.david.murray, rhettinger, serhiy.storchaka, vstinner
Date 2014-12-09.11:22:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <CAMpsgwY59Z13MvGBF5FfbO_DAWVQx7LrDVbnM9KLONUuWDR_VA@mail.gmail.com>
In-reply-to <1418121999.47.0.576207634511.issue22939@psf.upfronthosting.co.za>
Content
I prefer to raise an OverflowError *before* calling
PySequence_GetItem(). The call to PySequence_GetItem() may be
expensive, and we have to drop the result if an OverflowError is
raised after the call. At the end, the behaviour is the same: an
OverflowError is raised.
History
Date User Action Args
2014-12-09 11:22:03vstinnersetrecipients: + vstinner, rhettinger, mark.dickinson, r.david.murray, serhiy.storchaka, hakril
2014-12-09 11:22:02vstinnerlinkissue22939 messages
2014-12-09 11:22:02vstinnercreate