commit | 75d26ccd7af6f10054dbd74f9c42171f1fa298d6 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Thu Feb 15 04:01:01 2007 +0000 |
committer | Guido van Rossum <guido@python.org> | Thu Feb 15 04:01:01 2007 +0000 |
tree | ed1a343de77a67300b33bdab866747d7eff3ad0c | |
parent | d81206d1526f869645bca83193da5ddfefaf4936 [diff] [blame] |
Some more test now pass.
diff --git a/Lib/test/test_richcmp.py b/Lib/test/test_richcmp.py index 72a6de8..99ddc30 100644 --- a/Lib/test/test_richcmp.py +++ b/Lib/test/test_richcmp.py
@@ -265,7 +265,7 @@ imag1a = {} for i in range(50): imag1a[random.randrange(100)*1j] = random.randrange(100)*1j - items = imag1a.items() + items = list(imag1a.items()) random.shuffle(items) imag1b = {} for k, v in items: