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 pabstersac
Recipients pabstersac
Date 2016-07-18.05:54:59
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1468821299.76.0.127950361859.issue27549@psf.upfronthosting.co.za>
In-reply-to
Content
There is an integer overflow because python doesn't check the length correctly on bytearray:
bytearray(0xFFFFFFFFFFFFFFF**10000000000**80000000000000000)
That will not return an overflow message, and even though my hex knowledge is very bad I do believe 0xFFFFFFFFFFFFFFF**10000000000**80000000000000000 is more than 0xFFFFFFFFFFFFFFFF which does return a overflow message.
Hope it helps ;)
History
Date User Action Args
2016-07-18 05:54:59pabstersacsetrecipients: + pabstersac
2016-07-18 05:54:59pabstersacsetmessageid: <1468821299.76.0.127950361859.issue27549@psf.upfronthosting.co.za>
2016-07-18 05:54:59pabstersaclinkissue27549 messages
2016-07-18 05:54:59pabstersaccreate