This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author BTaskaya
Recipients BTaskaya, belopolsky, p-ganssle, pitrou, vstinner
Date 2020-05-15.14:02:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1589551346.5.0.193221959496.issue40192@roundup.psfhosted.org>
In-reply-to
Content
current:
>>> import time
>>> import time
>>> time.get_clock_info('thread_time')
namespace(adjustable=False, implementation='clock_gettime(CLOCK_THREAD_CPUTIME_ID)', monotonic=True, resolution=0.01)
>>> time.thread_time()
0.07

PR 19381:
>>> import time
>>> time.get_clock_info('thread_time')
namespace(adjustable=False, implementation='thread_cputime()', monotonic=True, resolution=1e-09)
>>> time.thread_time()
0.002379953
History
Date User Action Args
2020-05-15 14:02:26BTaskayasetrecipients: + BTaskaya, belopolsky, pitrou, vstinner, p-ganssle
2020-05-15 14:02:26BTaskayasetmessageid: <1589551346.5.0.193221959496.issue40192@roundup.psfhosted.org>
2020-05-15 14:02:26BTaskayalinkissue40192 messages
2020-05-15 14:02:26BTaskayacreate