mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-09 22:49:57 +09:00
make dict delete remains order
This commit is contained in:
@@ -474,8 +474,6 @@ class DictTest(unittest.TestCase):
|
||||
for i in d:
|
||||
d[i+1] = 1
|
||||
|
||||
# TODO: RUSTPYTHON
|
||||
@unittest.expectedFailure
|
||||
def test_mutating_iteration_delete(self):
|
||||
# change dict content during iteration
|
||||
d = {}
|
||||
@@ -485,8 +483,6 @@ class DictTest(unittest.TestCase):
|
||||
del d[0]
|
||||
d[0] = 0
|
||||
|
||||
# TODO: RUSTPYTHON
|
||||
@unittest.expectedFailure
|
||||
def test_mutating_iteration_delete_over_values(self):
|
||||
# change dict content during iteration
|
||||
d = {}
|
||||
@@ -496,8 +492,6 @@ class DictTest(unittest.TestCase):
|
||||
del d[0]
|
||||
d[0] = 0
|
||||
|
||||
# TODO: RUSTPYTHON
|
||||
@unittest.expectedFailure
|
||||
def test_mutating_iteration_delete_over_items(self):
|
||||
# change dict content during iteration
|
||||
d = {}
|
||||
|
||||
Reference in New Issue
Block a user