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 ezio.melotti
Recipients andrea.bergamini, ezio.melotti, mark.dickinson, skrah
Date 2012-07-24.11:32:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1343129577.96.0.610119989003.issue15438@psf.upfronthosting.co.za>
In-reply-to
Content
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
History
Date User Action Args
2012-07-24 11:32:58ezio.melottisetrecipients: + ezio.melotti, mark.dickinson, skrah, andrea.bergamini
2012-07-24 11:32:57ezio.melottisetmessageid: <1343129577.96.0.610119989003.issue15438@psf.upfronthosting.co.za>
2012-07-24 11:32:57ezio.melottilinkissue15438 messages
2012-07-24 11:32:57ezio.melotticreate