Ezio Melotti <ezio.melo...@gmail.com> added the comment: This is what I get on both 2.7 and 3.3: >>> import math >>> math.pow(43, 10) 2.161148231328425e+16 >>> pow(43, 10) 21611482313284249 >>> 43**10 21611482313284249 >>> int(math.pow(43, 10)) 21611482313284248
---------- nosy: +ezio.melotti, skrah _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue15438> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com