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 vstinner
Recipients Nitapol, ned.deily, ronaldoussoren, vstinner
Date 2019-03-12.15:44:27
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1552405467.28.0.913466129082.issue36205@roundup.psfhosted.org>
In-reply-to
Content
Sorry, I don't understand the problem.

Can someone please give the result of these commands on Python 3.6 and 3.7 on macOS?

Example on Linux (Fedora 29):

$ python3
>>> import platform, time
>>> platform.platform()
'Linux-4.20.13-200.fc29.x86_64-x86_64-with-fedora-29-Twenty_Nine'
>>> for clock in ('monotonic', 'perf_counter', 'process_time', 'thread_time', 'time'): print(f'clock: {time.get_clock_info(clock)}')
... 
clock: namespace(adjustable=False, implementation='clock_gettime(CLOCK_MONOTONIC)', monotonic=True, resolution=1e-09)
clock: namespace(adjustable=False, implementation='clock_gettime(CLOCK_MONOTONIC)', monotonic=True, resolution=1e-09)
clock: namespace(adjustable=False, implementation='clock_gettime(CLOCK_PROCESS_CPUTIME_ID)', monotonic=True, resolution=1e-09)
clock: namespace(adjustable=False, implementation='clock_gettime(CLOCK_THREAD_CPUTIME_ID)', monotonic=True, resolution=1e-09)
clock: namespace(adjustable=True, implementation='clock_gettime(CLOCK_REALTIME)', monotonic=False, resolution=1e-09)
History
Date User Action Args
2019-03-12 15:44:27vstinnersetrecipients: + vstinner, ronaldoussoren, ned.deily, Nitapol
2019-03-12 15:44:27vstinnersetmessageid: <1552405467.28.0.913466129082.issue36205@roundup.psfhosted.org>
2019-03-12 15:44:27vstinnerlinkissue36205 messages
2019-03-12 15:44:27vstinnercreate