commit | d73ef06cd30eea20f121a79984b8c0c762cb4373 | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Sun Jan 04 11:14:51 2004 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Sun Jan 04 11:14:51 2004 +0000 |
tree | 7e1a730bc6ebba9a1bc1bd0cb3c6306ca4dc77a1 | |
parent | b86269db458f63b95be8017e47671092be3b48d1 [diff] [blame] |
Exercise sorted() where possible
diff --git a/Lib/test/test_cookie.py b/Lib/test/test_cookie.py index 65b0645..3e80b6f 100644 --- a/Lib/test/test_cookie.py +++ b/Lib/test/test_cookie.py
@@ -23,9 +23,7 @@ C = Cookie.SimpleCookie() ; C.load(data) print repr(C) print str(C) - items = dict.items() - items.sort() - for k, v in items: + for k, v in sorted(dict.iteritems()): print ' ', k, repr( C[k].value ), repr(v) verify(C[k].value == v) print C[k]