Close #14309: Deprecate time.clock()

Use time.perf_counter() or time.process_time() instead.
diff --git a/Misc/NEWS b/Misc/NEWS
index 995ec9e..3b5cbda 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -81,6 +81,9 @@
 Library
 -------
 
+- Issue #14309: Deprecate time.clock(), use time.perf_counter() or
+  time.process_time() instead.
+
 - Issue #14428: Implement the PEP 418. Add time.get_clock_info(),
   time.perf_counter() and time.process_time() functions, and rename
   time.steady() to time.monotonic().