Andy Dingley wrote:

> I need to generate a set (lots of intersections involved), but then I
> need to display it sorted
>
>        lstBugsChanged = [ bugId for bugId in setBugsChanged ]
>        lstBugsChanged.sort()

lstBugsChanged = sorted(setBugsChanged)

</F> 



-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to