mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
More 2to3 fixes in the Tools directory. Fixes #2893.
This commit is contained in:
parent
acbca71ea7
commit
bf82e374ee
38 changed files with 1999 additions and 2032 deletions
|
@ -23,8 +23,7 @@ def clockres(timer):
|
|||
break
|
||||
for i in spin_loops:
|
||||
d[timer()] = 1
|
||||
values = d.keys()
|
||||
values.sort()
|
||||
values = sorted(d.keys())
|
||||
min_diff = TEST_TIME
|
||||
for i in range(len(values) - 1):
|
||||
diff = values[i+1] - values[i]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue