summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorMichael Wayne Goodman <goodman.m.w@gmail.com>2019-12-27 03:01:08 (GMT)
committerBenjamin Peterson <benjamin@python.org>2019-12-27 03:01:08 (GMT)
commit91874bb07161bb481b6f5ea18ffafe69cb8cac30 (patch)
tree989938cc4693c396f5a34c89e649c72130ea4505 /Doc
parentc0052f3fe3d19820b2d4f76e383035439affe32c (diff)
downloadcpython-91874bb07161bb481b6f5ea18ffafe69cb8cac30.zip
cpython-91874bb07161bb481b6f5ea18ffafe69cb8cac30.tar.gz
cpython-91874bb07161bb481b6f5ea18ffafe69cb8cac30.tar.bz2
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.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/time.rst1
1 files changed, 0 insertions, 1 deletions
diff --git a/Doc/library/time.rst b/Doc/library/time.rst
index e628ac4..6842e90 100644
--- a/Doc/library/time.rst
+++ b/Doc/library/time.rst
@@ -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`