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 serhiy.storchaka
Recipients larry, lemburg, mark.dickinson, rhettinger, serhiy.storchaka, stutzbach, vstinner, vxgmichel
Date 2020-02-03.16:04:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1580745849.29.0.322834871599.issue39484@roundup.psfhosted.org>
In-reply-to
Content
>>> 1580301619906185300/10**9
1580301619.9061854
>>> 1580301619906185300/1e9
1580301619.9061852
>>> float(F(1580301619906185300/10**9) * 10**9 - 1580301619906185300)
88.5650634765625
>>> float(F(1580301619906185300/1e9) * 10**9 - 1580301619906185300)
-149.853515625

1580301619906185300/10**9 is more accurate than 1580301619906185300/1e9.
History
Date User Action Args
2020-02-03 16:04:09serhiy.storchakasetrecipients: + serhiy.storchaka, lemburg, rhettinger, mark.dickinson, vstinner, larry, stutzbach, vxgmichel
2020-02-03 16:04:09serhiy.storchakasetmessageid: <1580745849.29.0.322834871599.issue39484@roundup.psfhosted.org>
2020-02-03 16:04:09serhiy.storchakalinkissue39484 messages
2020-02-03 16:04:09serhiy.storchakacreate