diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2012-02-07 22:41:01 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2012-02-07 22:41:01 (GMT) |
commit | 09225b73c1460c2b725b009eb8c9cf320fa22d5d (patch) | |
tree | 81b770ae0401745e4584215b478e352729819be5 /Misc | |
parent | 8b30201f7d3028628aba1b4bec203a7b507de73b (diff) | |
download | cpython-09225b73c1460c2b725b009eb8c9cf320fa22d5d.zip cpython-09225b73c1460c2b725b009eb8c9cf320fa22d5d.tar.gz cpython-09225b73c1460c2b725b009eb8c9cf320fa22d5d.tar.bz2 |
Issue #13845: time.time() now uses GetSystemTimeAsFileTime() instead of ftime()
to have a resolution of 100 ns instead of 1 ms (the clock accuracy is between
0.5 ms and 15 ms).
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -466,6 +466,10 @@ Core and Builtins Library ------- +- Issue #13845: time.time() now uses GetSystemTimeAsFileTime() instead of + ftime() to have a resolution of 100 ns instead of 1 ms (the clock accuracy is + between 0.5 ms and 15 ms). + - Issue #13846: Add time.monotonic(), monotonic clock. - Issue #10811: Fix recursive usage of cursors. Instead of crashing, |