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 /Misc | |
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 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -81,6 +81,9 @@ Core and Builtins Library ------- +- Issue #14309: Deprecate time.clock(), use time.perf_counter() or + time.process_time() instead. + - Issue #14428: Implement the PEP 418. Add time.get_clock_info(), time.perf_counter() and time.process_time() functions, and rename time.steady() to time.monotonic(). |