summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_collections.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_collections.py')
-rw-r--r--Lib/test/test_collections.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/test/test_collections.py b/Lib/test/test_collections.py
index 097aa9a..7a1ff14 100644
--- a/Lib/test/test_collections.py
+++ b/Lib/test/test_collections.py
@@ -1746,10 +1746,6 @@ class OrderedDictTests:
self.assertEqual(list(reversed(od.items())), list(reversed(pairs)))
def test_detect_deletion_during_iteration(self):
- # XXX This test should also work under cOrderedDict.
- if self.module is c_coll:
- raise unittest.SkipTest("only valid for pure Python OrderedDict")
-
OrderedDict = self.module.OrderedDict
od = OrderedDict.fromkeys('abc')
it = iter(od)