Fixes in sorting descriptions (GH-18317)

Improvements in listsort.txt and a comment in sortperf.py.

Automerge-Triggered-By: @csabella
This commit is contained in:
Stefan Pochmann 2020-02-03 17:47:20 +01:00 committed by GitHub
parent 4b524161a0
commit 24e5ad4689
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 9 deletions

View file

@ -134,7 +134,7 @@ def tabulate(r):
L = list(range(half - 1, -1, -1))
L.extend(range(half))
# Force to float, so that the timings are comparable. This is
# significantly faster if we leave tham as ints.
# significantly faster if we leave them as ints.
L = list(map(float, L))
doit(L) # !sort
print()