[issue27551] Integer Overflow On print()

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 ___

[issue27551] Integer Overflow On print()

2016-07-17 Thread pablo sacristan
New submission from pablo sacristan: There is an integer overflow because python doesn't check the length correctly on print() statements: print(0xFFF**100**8) That will overflow and python would stop working, so it would be as good as crashed :) Hope it help