PEP 418: Oops, fix typo in last commit

This commit is contained in:
Victor Stinner 2012-04-18 00:39:39 +02:00
parent 64a87deb1f
commit 83d406250f
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ def test_clock(name, func):
print("- precision in Python: %s" % format_duration(precision))
clocks = ('clock', 'perf_counter', 'process_time')
clocks = ['clock', 'perf_counter', 'process_time']
if hasattr(time, 'monotonic'):
clocks.append('monotonic')
clocks.append('time')