The documentation doesn't guarantee that. Is there any other place that it is documented?

I'm guessing it might be stable since the sort method on lists is guaranteed to be stable (Notes 9th point: "Starting with Python 2.3, the sort() method is guaranteed to be stable"), and sorted is functionally similar. However, I'm not able to find any definitive source that says so.

Purpose: I need to sort based on a primary key and also a secondary key in cases where the primary key is equal in both records. If sorted() is guaranteed to be stable, I can sort on the secondary key, then sort on the primary key and get the result I need.

PS: To avoid any confusion, I'm using stable in the sense of "a sort is stable if it guarantees not to change the relative order of elements that compare equal".

link|improve this question

feedback

3 Answers

up vote 9 down vote accepted

Yes, the intention of the manual is indeed to guarantee that sorted is stable and indeed that it uses exactly the same algorithm as the sort method. I do realize that the docs aren't 100% clear about this identity; doc patches are always happily accepted!

link|improve this answer
feedback

They are stable. Although you don't need to know if sort and sorted are stable, because you don't need to sort in two steps when having multiple keys.

For example, if you want to sort objects based on their last_name, first_name attributes, you can:

sorted_list= sorted(
    your_sequence_of_items,
    key= lambda item: (item.last_name, item.first_name))

taking advantage of tuple comparison.

This answer, as-is, covers the original question. For further sorting-related questions, there is the Python Sorting How-To.

link|improve this answer
This can have undesired effect if you want to reverse the sort. For example when sorting on products, you may want to first sort on rating (ascending order) and then on price (also ascending). If you reverse this, you want to sort on rating in descending order but on price in ascending order. This doesn't work with this solution. – Remco Wendt Mar 8 at 13:54
@RemcoWendt: there was no requirement for what you describe. In any case, consider key= lambda item: (-item.rating, item.price) or supplying a cmp instead of a key argument. I'm still not sure about the purpose of your comment, though. – tzot Mar 8 at 23:07
Indeed it was not a requirement, but wanted to point out this subtle difference when other people read this and make a choice between your solution or using Python's stable sort feature. – Remco Wendt Mar 12 at 21:12
@RemcoWendt Which subtle difference are you talking about? I already gave an example of “my” solution (it seems you didn't frequent comp.lang.python around the time the key argument of sort was being discussed) working with your example. Anyway, I updated the answer with a pointer to the Python Sorting How-to. HTH. – tzot Mar 13 at 8:30
feedback

The "What's New" docs for Python 2.4 effectively make the point that sorted() first creates a list, then calls sort() on it, providing you with the guarantee you need though not in the "official" docs. You could also just check the source, if you're really concerned.

Edit: included link

link|improve this answer
Could you point to where it says so? It says sorted() "works like the in-place list.sort()" and "a newly formed copy is sorted", but I don't see it saying that it internally uses sort(). – sundar Dec 16 '09 at 16:06
The "copy" that is formed is a list (that's what you get as a return value), and .sort() is called on that list prior to returning. QED. No, it's not an unassailable proof, but until Python has an official standard you won't get that. – Peter Hansen Dec 16 '09 at 17:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.