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 fdrake, pfalcon, vstinner, yselivanov
Date 2014-02-02.08:07:11
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <CAMpsgwbOiO78qpCzW-UtM3DAehVYEaB+Vd5zW=Qw=6MYQTMO=Q@mail.gmail.com>
In-reply-to <1391309742.54.0.0915451689709.issue20475@psf.upfronthosting.co.za>
Content
time.monotonic() has a bad resolution (15.6 ms) on Windows. To measure
performances, use time.perf_counter() or time.process_time() as proposed in
tome.clock() documentation. It depends if you want to include time elapsed
during sleep. Usually time.perf_counter() is the expected function.
History
Date User Action Args
2014-02-02 08:07:12vstinnersetrecipients: + vstinner, fdrake, pfalcon, yselivanov
2014-02-02 08:07:11vstinnerlinkissue20475 messages
2014-02-02 08:07:11vstinnercreate