We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently Markus uses time.time to measure elapsed time. @peterbe pointed out that it's probably the case we should be using time.perf_counter:
time.time
time.perf_counter
https://docs.python.org/3/library/time.html#time.perf_counter
This issue covers looking into that.
The text was updated successfully, but these errors were encountered:
Use time.perf_counter for time statistics on Python 3
d1563dd
Fixes willkg#34
3a759df
Successfully merging a pull request may close this issue.
Currently Markus uses
time.time
to measure elapsed time. @peterbe pointed out that it's probably the case we should be usingtime.perf_counter
:https://docs.python.org/3/library/time.html#time.perf_counter
This issue covers looking into that.
The text was updated successfully, but these errors were encountered: