index
:
cpython
3.10
3.11
3.12
3.13
3.14
3.9
main
The Python programming language
Aslak Raanes
about
summary
refs
log
tree
commit
diff
stats
homepage
log msg
author
committer
range
path:
root
/
Lib
/
test
/
test_sort.py
Commit message (
Expand
)
Author
Age
*
gh-95173: Add a regression test for sorting tuples containing None (#95464)
Jacob Walls
2022-08-01
*
bpo-36218: Fix handling of heterogeneous values in list.sort (GH-12209)
Rémi Lapeyre
2019-03-25
*
bpo-28685: Optimize sorted() list.sort() with type-specialized comparisons (#...
embg
2018-01-28
*
Issue #23277: Remove unused sys and os imports
Berker Peksag
2016-04-24
*
Issue #21741: Update 147 test modules to use test discovery.
Zachary Ware
2015-04-13
*
Remove duplicates of cmp_to_key (#12542, reviewed by Raymond Hettinger)
Éric Araujo
2011-07-26
*
#11335: Fix memory leak after key function failure in sort
Daniel Stutzbach
2011-05-04
*
Issue #1717: Remove cmp. Stage 1: remove all uses of cmp and __cmp__ from
Mark Dickinson
2009-01-27
*
#2621 rename test.test_support to test.support
Benjamin Peterson
2008-05-20
*
Issue #1771: Remove cmp parameter from list.sort() and builtin.sorted().
Raymond Hettinger
2008-01-30
*
Merged revisions 55328-55341 via svnmerge from
Guido van Rossum
2007-05-15
*
Merged revisions 55007-55179 via svnmerge from
Guido van Rossum
2007-05-07
*
Fix most trivially-findable print statements.
Guido van Rossum
2007-02-09
*
Restructure comparison dramatically. There is no longer a default
Guido van Rossum
2006-08-24
*
move test into a unittest.TestCase, no functional changes
Neal Norwitz
2005-11-24
*
* drop the unreasonable list invariant that ob_item should never come back
Armin Rigo
2004-07-29
*
Whitespace normalization.
Tim Peters
2004-01-18
*
Guido grants a Christmas wish:
Raymond Hettinger
2003-12-17
*
Remove extra copy of test_key_with_exception that somehow appeared
Michael W. Hudson
2003-12-04
*
Fixes and tests for various "holding pointers when arbitrary Python code
Michael W. Hudson
2003-12-04
*
Make sure the list.sort's decorate step unwinds itself before returning
Raymond Hettinger
2003-11-28
*
* Migrate set() and frozenset() from the sandbox.
Raymond Hettinger
2003-11-16
*
Add list.sorted() classmethod.
Raymond Hettinger
2003-10-29
*
* list.sort() now supports three keyword arguments: cmp, key, and reverse.
Raymond Hettinger
2003-10-16
*
Allow list sort's comparison function to explicitly be None. See SF patch
Skip Montanaro
2003-01-02
*
SF patch 637176: list.sort crasher
Tim Peters
2002-11-12
*
Remove cut 'n paste silliness.
Tim Peters
2002-08-03
*
New test for sorting sanity. Note that this will fail in earlier Pythons,
Tim Peters
2002-08-01