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.06:21:48
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1468822908.93.0.0686992762741.issue27557@psf.upfronthosting.co.za>
In-reply-to
Content
There is an integer overflow on int() because python incorrectly checks the length of the input.
int(0xFFFFFFFFFFFFFFF+100000**8000000000)
That line of code will freeze python until you restart it, which is as annoying as if python had crashed.
Hope it helps ;)
History
Date User Action Args
2016-07-18 06:21:48pabstersacsetrecipients: + pabstersac
2016-07-18 06:21:48pabstersacsetmessageid: <1468822908.93.0.0686992762741.issue27557@psf.upfronthosting.co.za>
2016-07-18 06:21:48pabstersaclinkissue27557 messages
2016-07-18 06:21:48pabstersaccreate