We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5089cb0 + f798d2d commit 93613ecCopy full SHA for 93613ec
Lib/test/test_dictviews.py
@@ -322,6 +322,9 @@ def test_abc_registry(self):
322
self.assertIsInstance(d.values(), collections.abc.ValuesView)
323
self.assertIsInstance(d.values(), collections.abc.MappingView)
324
self.assertIsInstance(d.values(), collections.abc.Sized)
325
+ self.assertIsInstance(d.values(), collections.abc.Collection)
326
+ self.assertIsInstance(d.values(), collections.abc.Iterable)
327
+ self.assertIsInstance(d.values(), collections.abc.Container)
328
329
self.assertIsInstance(d.items(), collections.abc.ItemsView)
330
self.assertIsInstance(d.items(), collections.abc.MappingView)
0 commit comments