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 pitrou
Recipients benjamin.peterson, georg.brandl, pitrou
Date 2008-07-31.08:38:51
SpamBayes Score 0.12751065
Marked as misclassified No
Message-id <1217493532.76.0.607166759303.issue2965@psf.upfronthosting.co.za>
In-reply-to
Content
By the way, code like:
         items1 = list(dict.items())
         items1.sort()

could be simplified into:
         items1 = sorted(dict.items())

(same for reversed() instead of list.reverse())
History
Date User Action Args
2008-07-31 08:38:52pitrousetrecipients: + pitrou, georg.brandl, benjamin.peterson
2008-07-31 08:38:52pitrousetmessageid: <1217493532.76.0.607166759303.issue2965@psf.upfronthosting.co.za>
2008-07-31 08:38:52pitroulinkissue2965 messages
2008-07-31 08:38:51pitroucreate