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 serhiy.storchaka
Recipients belopolsky, benhoyt, benjamin.peterson, ethan.furman, fdrake, lemburg, mrabarnett, serhiy.storchaka, vstinner
Date 2017-10-22.13:14:36
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1508678076.34.0.213398074469.issue31803@psf.upfronthosting.co.za>
In-reply-to
Content
On non-Windows platforms clock() returns the processor time, perf_counter() does include time elapsed during sleep.

>>> import time
>>> start = time.clock(); time.sleep(1); print(time.clock() - start)
9.700000000001374e-05
>>> start = time.perf_counter(); time.sleep(1); print(time.perf_counter() - start)
1.000714950998372
History
Date User Action Args
2017-10-22 13:14:36serhiy.storchakasetrecipients: + serhiy.storchaka, lemburg, fdrake, belopolsky, vstinner, benjamin.peterson, mrabarnett, benhoyt, ethan.furman
2017-10-22 13:14:36serhiy.storchakasetmessageid: <1508678076.34.0.213398074469.issue31803@psf.upfronthosting.co.za>
2017-10-22 13:14:36serhiy.storchakalinkissue31803 messages
2017-10-22 13:14:36serhiy.storchakacreate