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 rhettinger
Recipients mark.dickinson, rhettinger, serhiy.storchaka, tim.peters
Date 2015-04-25.21:14:17
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1429996457.64.0.178220644842.issue24059@psf.upfronthosting.co.za>
In-reply-to
Content
Hmm, I don't get that same result (Mac OS/X 10.10, Python 3.4.2):

>>> from math import *
>>> 0.0171889575379941**0.5
0.13110666473522273
>>> sqrt(0.0171889575379941)
0.13110666473522273

It's odd because your two result as same number, just displayed differently.  I thought that wasn't supposed to happen anymore.

>>> (0.13110666473522276).hex()
'0x1.0c81a6aa9a74ep-3'
>>> (0.13110666473522273).hex()
'0x1.0c81a6aa9a74dp-3'
History
Date User Action Args
2015-04-25 21:14:17rhettingersetrecipients: + rhettinger, tim.peters, mark.dickinson, serhiy.storchaka
2015-04-25 21:14:17rhettingersetmessageid: <1429996457.64.0.178220644842.issue24059@psf.upfronthosting.co.za>
2015-04-25 21:14:17rhettingerlinkissue24059 messages
2015-04-25 21:14:17rhettingercreate