closes bpo-39135: Remove 'time.clock()' mention in docs. (GH17709)

`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.
This commit is contained in:
Michael Wayne Goodman 2019-12-27 11:01:08 +08:00 committed by Benjamin Peterson
parent c0052f3fe3
commit 91874bb071
1 changed files with 0 additions and 1 deletions

View File

@ -218,7 +218,6 @@ Functions
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`