Message361292
The problem is that there is a double rounding in
time = float(time_ns) / 1e9
1. When convert time_ns to float.
2. When divide it by 1e9.
The formula
time = time_ns / 10**9
may be more accurate. |
|
Date |
User |
Action |
Args |
2020-02-03 13:37:38 | serhiy.storchaka | set | recipients:
+ serhiy.storchaka, lemburg, rhettinger, mark.dickinson, vstinner, larry, stutzbach, vxgmichel |
2020-02-03 13:37:38 | serhiy.storchaka | set | messageid: <1580737058.56.0.496289773255.issue39484@roundup.psfhosted.org> |
2020-02-03 13:37:38 | serhiy.storchaka | link | issue39484 messages |
2020-02-03 13:37:38 | serhiy.storchaka | create | |
|