diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2012-02-08 21:53:24 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2012-02-08 21:53:24 (GMT) |
commit | 72476eae5fe4d7bc4d4c4e30471cd83a501707de (patch) | |
tree | b4a0a47d568550a09965fea3e0c254e491afe928 /Misc | |
parent | ccd5715a149388eec2f40e5efacac83d3fe357ca (diff) | |
download | cpython-72476eae5fe4d7bc4d4c4e30471cd83a501707de.zip cpython-72476eae5fe4d7bc4d4c4e30471cd83a501707de.tar.gz cpython-72476eae5fe4d7bc4d4c4e30471cd83a501707de.tar.bz2 |
Issue #13845: Fix NEWS entry, the change is specific to Windows
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -466,9 +466,9 @@ 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 #13845: On Windows, 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. |