diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2012-04-29 00:52:39 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2012-04-29 00:52:39 (GMT) |
commit | 47620a661128ce91f46f01fb46e1326880365e75 (patch) | |
tree | 0018249b44f8b8471e93a9ea0f8567352a0b651f /Doc/library | |
parent | ec89539ccccd6103665a7a5c7234cf09f27c1c72 (diff) | |
download | cpython-47620a661128ce91f46f01fb46e1326880365e75.zip cpython-47620a661128ce91f46f01fb46e1326880365e75.tar.gz cpython-47620a661128ce91f46f01fb46e1326880365e75.tar.bz2 |
Close #14309: Deprecate time.clock()
Use time.perf_counter() or time.process_time() instead.
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/time.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/library/time.rst b/Doc/library/time.rst index 56ca865..879f8c7 100644 --- a/Doc/library/time.rst +++ b/Doc/library/time.rst @@ -136,6 +136,11 @@ The module defines the following functions and data items: :c:func:`QueryPerformanceCounter`. The resolution is typically better than one microsecond. + .. deprecated:: 3.3 + 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. + .. function:: clock_getres(clk_id) |