`time.clock()` was removed in Python 3.8, but it was still mentioned
in the documentation for when `time.get_clock_info()` is given the
argument `'clock'`. This commit removes that mention.
(cherry picked from commit
91874bb07161bb481b6f5ea18ffafe69cb8cac30)
Co-authored-by: Michael Wayne Goodman <goodman.m.w@gmail.com>
Supported clock names and the corresponding functions to read their value
are:
- * ``'clock'``: :func:`time.clock`
* ``'monotonic'``: :func:`time.monotonic`
* ``'perf_counter'``: :func:`time.perf_counter`
* ``'process_time'``: :func:`time.process_time`