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:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1468821295.01.0.886780512463.issue27548@psf.upfronthosting.co.za>
In-reply-to
Content
There is an integer overflow in bin() because python incorrectly checks the length of the input in bin().
bin(0xFFFFFFFFFFFFFFF+100000**8000000000)
That line will freeze python until you restart it, which basically is a crash because python stops working completely.
Hope it helps ;)
History
Date User Action Args
2016-07-18 05:54:55pabstersacsetrecipients: + pabstersac
2016-07-18 05:54:55pabstersacsetmessageid: <1468821295.01.0.886780512463.issue27548@psf.upfronthosting.co.za>
2016-07-18 05:54:54pabstersaclinkissue27548 messages
2016-07-18 05:54:54pabstersaccreate