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 vxgmichel
Recipients larry, lemburg, mark.dickinson, rhettinger, serhiy.storchaka, stutzbach, vstinner, vxgmichel
Date 2020-02-03.16:35:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1580747722.97.0.264642746212.issue39484@roundup.psfhosted.org>
In-reply-to
Content
@serhiy.storchaka
> 1580301619906185300/10**9 is more accurate than 1580301619906185300/1e9.

I don't know exactly what `F` represents in your example but here is what I get:

>>> r = 1580301619906185300                                                              
>>> int(r / 10**9 * 10**9) - r                                                           
172
>>> int(r / 1e9 * 10**9) - r                                                             
-84

@vstinner
> I suggest to only document in time.time() is less accurate than time.time_ns().

Sounds good!
History
Date User Action Args
2020-02-03 16:35:23vxgmichelsetrecipients: + vxgmichel, lemburg, rhettinger, mark.dickinson, vstinner, larry, stutzbach, serhiy.storchaka
2020-02-03 16:35:22vxgmichelsetmessageid: <1580747722.97.0.264642746212.issue39484@roundup.psfhosted.org>
2020-02-03 16:35:22vxgmichellinkissue39484 messages
2020-02-03 16:35:22vxgmichelcreate