summaryrefslogtreecommitdiffstats
path: root/Misc
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 /Misc
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 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2019-05-12-14-49-13.bpo-36895.ZZuuY7.rst2
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.