diff options
author | Tim Peters <tim@python.org> | 2013-08-22 23:42:02 (GMT) |
---|---|---|
committer | Tim Peters <tim@python.org> | 2013-08-22 23:42:02 (GMT) |
commit | a1db94554b0f9e26db5e0a75f6363436fe9661a3 (patch) | |
tree | b6d4292a500ff89ad218fed2e0e4790f91eb458e /Objects | |
parent | 67e5198dbf0dd184fba751540574963ace294ced (diff) | |
parent | 01e75a699d2fd8e9dbfa428412da2a7d1b0af257 (diff) | |
download | cpython-a1db94554b0f9e26db5e0a75f6363436fe9661a3.zip cpython-a1db94554b0f9e26db5e0a75f6363436fe9661a3.tar.gz cpython-a1db94554b0f9e26db5e0a75f6363436fe9661a3.tar.bz2 |
Add line explaining the "%sort" test.
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/listsort.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Objects/listsort.txt b/Objects/listsort.txt index 47fec1d..3ec4393 100644 --- a/Objects/listsort.txt +++ b/Objects/listsort.txt @@ -60,6 +60,7 @@ Comparison with Python's Samplesort Hybrid /sort: ascending data 3sort: ascending, then 3 random exchanges +sort: ascending, then 10 random at the end + %sort: ascending, then randomly replace 1% of elements w/ random values ~sort: many duplicates =sort: all equal !sort: worst case scenario |