[Python-checkins] [3.7] bpo-36895: document time.clock() has been removed in 3.8 (GH-13287)

Victor Stinner webhook-mailer at python.org
Mon May 13 12:08:53 EDT 2019


https://github.com/python/cpython/commit/24482bd0ae203116fd7e41ec3219fb2857fb3ac7
commit: 24482bd0ae203116fd7e41ec3219fb2857fb3ac7
branch: 3.7
author: Matthias Bussonnier <bussonniermatthias at gmail.com>
committer: Victor Stinner <vstinner at redhat.com>
date: 2019-05-13T18:08:48+02:00
summary:

[3.7] bpo-36895: document time.clock() has been removed in 3.8 (GH-13287)

files:
M Doc/library/time.rst

diff --git a/Doc/library/time.rst b/Doc/library/time.rst
index 8c6813bb7361..4230c19faf10 100644
--- a/Doc/library/time.rst
+++ b/Doc/library/time.rst
@@ -153,7 +153,7 @@ Functions
    :c:func:`QueryPerformanceCounter`. The resolution is typically better than one
    microsecond.
 
-   .. 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.



More information about the Python-checkins mailing list