diff options
author | Matthias Bussonnier <bussonniermatthias@gmail.com> | 2019-05-13 01:34:44 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2019-05-13 01:34:44 (GMT) |
commit | e2500610c62673f42371b54fb0e4de83e4b33146 (patch) | |
tree | 93cb4b92e995d87613fa249d4195f069229b3518 /Misc | |
parent | 5d23e282af69d404a3430bb95aefe371112817b3 (diff) | |
download | cpython-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 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2019-05-12-14-49-13.bpo-36895.ZZuuY7.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-05-12-14-49-13.bpo-36895.ZZuuY7.rst b/Misc/NEWS.d/next/Library/2019-05-12-14-49-13.bpo-36895.ZZuuY7.rst new file mode 100644 index 0000000..f6708ab --- /dev/null +++ b/Misc/NEWS.d/next/Library/2019-05-12-14-49-13.bpo-36895.ZZuuY7.rst @@ -0,0 +1,2 @@ +The function ``time.clock()`` was deprecated in 3.3 in favor of +``time.perf_counter()`` and marked for removal in 3.8, it has removed. |