Antoine Pitrou <[EMAIL PROTECTED]> added the comment:
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())
_______________________________________
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2965>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe:
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com