mirror of
https://github.com/python/cpython.git
synced 2025-08-31 14:07:50 +00:00
Some more test now pass.
This commit is contained in:
parent
d81206d152
commit
75d26ccd7a
3 changed files with 3 additions and 4 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue