This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author xtreak
Recipients cykerway, steven.daprano, tim.peters, xtreak
Date 2018-10-17.10:36:52
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1539772612.27.0.788709270274.issue35010@psf.upfronthosting.co.za>
In-reply-to
Content
There was some discussion about it : https://lists.gt.net/python/python/539896#539896 . As suggested by Raymond in the thread the below can be used to get the desired output

items.sort(key=lambda r: r['user'], reverse=True)
items.sort(key=lambda r: r['url'])
History
Date User Action Args
2018-10-17 10:36:52xtreaksetrecipients: + xtreak, tim.peters, steven.daprano, cykerway
2018-10-17 10:36:52xtreaksetmessageid: <1539772612.27.0.788709270274.issue35010@psf.upfronthosting.co.za>
2018-10-17 10:36:52xtreaklinkissue35010 messages
2018-10-17 10:36:52xtreakcreate