summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2012-02-07 22:41:01 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2012-02-07 22:41:01 (GMT)
commit09225b73c1460c2b725b009eb8c9cf320fa22d5d (patch)
tree81b770ae0401745e4584215b478e352729819be5 /Misc
parent8b30201f7d3028628aba1b4bec203a7b507de73b (diff)
downloadcpython-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/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7b38240..6338555 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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,