summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorMatthias Bussonnier <bussonniermatthias@gmail.com>2019-05-13 01:34:44 (GMT)
committerGregory P. Smith <greg@krypto.org>2019-05-13 01:34:44 (GMT)
commite2500610c62673f42371b54fb0e4de83e4b33146 (patch)
tree93cb4b92e995d87613fa249d4195f069229b3518 /Doc
parent5d23e282af69d404a3430bb95aefe371112817b3 (diff)
downloadcpython-e2500610c62673f42371b54fb0e4de83e4b33146.zip
cpython-e2500610c62673f42371b54fb0e4de83e4b33146.tar.gz
cpython-e2500610c62673f42371b54fb0e4de83e4b33146.tar.bz2
bpo-36895: remove time.clock() as per removal notice. (GH-13270)
`time.clock()` was deprecated in 3.3, and marked for removal removal in 3.8; this thus remove it from the time module.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/time.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/time.rst b/Doc/library/time.rst
index 170f8dc..cad4afd 100644
--- a/Doc/library/time.rst
+++ b/Doc/library/time.rst
@@ -155,7 +155,7 @@ Functions
.. availability:: Windows, Unix. Not available on VxWorks.
- .. deprecated:: 3.3
+ .. deprecated-removed:: 3.3 3.8
The behaviour of this function depends on the platform: use
:func:`perf_counter` or :func:`process_time` instead, depending on your
requirements, to have a well defined behaviour.