]> granicus.if.org Git - python/commitdiff
Issue #13845: Fix NEWS entry, the change is specific to Windows
authorVictor Stinner <victor.stinner@haypocalc.com>
Wed, 8 Feb 2012 21:53:24 +0000 (22:53 +0100)
committerVictor Stinner <victor.stinner@haypocalc.com>
Wed, 8 Feb 2012 21:53:24 +0000 (22:53 +0100)
Misc/NEWS

index 7367e1a57f36fc6dbaa533fde75b7a0b6dd8c9e5..462287d0bac147ad7d01ede2702021964ff093e7 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.