summaryrefslogtreecommitdiff
path: root/Lib/test/test_richcmp.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2007-02-15 04:01:01 +0000
committerGuido van Rossum <guido@python.org>2007-02-15 04:01:01 +0000
commit75d26ccd7af6f10054dbd74f9c42171f1fa298d6 (patch)
treeed1a343de77a67300b33bdab866747d7eff3ad0c /Lib/test/test_richcmp.py
parentd81206d1526f869645bca83193da5ddfefaf4936 (diff)
downloadcpython-git-75d26ccd7af6f10054dbd74f9c42171f1fa298d6.tar.gz
Some more test now pass.
Diffstat (limited to 'Lib/test/test_richcmp.py')
-rw-r--r--Lib/test/test_richcmp.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_richcmp.py b/Lib/test/test_richcmp.py
index 72a6de891a..99ddc30d9b 100644
--- a/Lib/test/test_richcmp.py
+++ b/Lib/test/test_richcmp.py
@@ -265,7 +265,7 @@ class DictTest(unittest.TestCase):
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: