Message361309
@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! |
|
Date |
User |
Action |
Args |
2020-02-03 16:35:23 | vxgmichel | set | recipients:
+ vxgmichel, lemburg, rhettinger, mark.dickinson, vstinner, larry, stutzbach, serhiy.storchaka |
2020-02-03 16:35:22 | vxgmichel | set | messageid: <1580747722.97.0.264642746212.issue39484@roundup.psfhosted.org> |
2020-02-03 16:35:22 | vxgmichel | link | issue39484 messages |
2020-02-03 16:35:22 | vxgmichel | create | |
|