[issue27553] Integer Overflow On unicode()

2016-07-17 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: See msg270712. -- nosy: +serhiy.storchaka resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker ___

[issue27553] Integer Overflow On unicode()

2016-07-17 Thread pablo sacristan
New submission from pablo sacristan: There is an integer overflow in unicode() because python incorrectly checks the length of unicode(): unicode(0xFFF+10**80) That freezes python until you restart it which is basically the same effect as crashing python. Hope it helps ;