summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorJakub Kulík <Kulikjak@gmail.com>2020-11-04 14:19:17 (GMT)
committerGitHub <noreply@github.com>2020-11-04 14:19:17 (GMT)
commita12f459ec2a31b96a21c735eb18f3d0fd19e99ff (patch)
treec2799febb21aaa16e10014feda822c2ca2ab1235 /Misc/NEWS.d
parentdb4932e311c83c1c93985b117d082988e1128f34 (diff)
downloadcpython-a12f459ec2a31b96a21c735eb18f3d0fd19e99ff.zip
cpython-a12f459ec2a31b96a21c735eb18f3d0fd19e99ff.tar.gz
cpython-a12f459ec2a31b96a21c735eb18f3d0fd19e99ff.tar.bz2
[3.8] bpo-35455: Fix thread_time for Solaris OS (GH-11118). (GH-23145)
(cherry picked from commit 9568622c9983b682b2a2a7bacfd3c341028ea099) Co-authored-by: Jakub Kulík <Kulikjak@gmail.com>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Library/2020-11-02-14-10-48.bpo-35455.Q1xTIo.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-11-02-14-10-48.bpo-35455.Q1xTIo.rst b/Misc/NEWS.d/next/Library/2020-11-02-14-10-48.bpo-35455.Q1xTIo.rst
new file mode 100644
index 0000000..e72c7d2
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2020-11-02-14-10-48.bpo-35455.Q1xTIo.rst
@@ -0,0 +1,3 @@
+On Solaris, :func:`~time.thread_time` is now implemented with
+``gethrvtime()`` because ``clock_gettime(CLOCK_THREAD_CPUTIME_ID)`` is not
+always available. Patch by Jakub Kulik.