Close #10278: Add clock_getres(), clock_gettime() and CLOCK_xxx constants to
the time module. time.clock_gettime(time.CLOCK_MONOTONIC) provides a monotonic
clock
diff --git a/Misc/NEWS b/Misc/NEWS
index 64eff6a..0a8a3a8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -341,6 +341,10 @@
 Library
 -------
 
+- Issue #10278: Add clock_getres(), clock_gettime() and CLOCK_xxx constants to
+  the time module. time.clock_gettime(time.CLOCK_MONOTONIC) provides a
+  monotonic clock
+
 - Issue #10332: multiprocessing: fix a race condition when a Pool is closed
   before all tasks have completed.