| 319 | |
| 320 | |
| 321 | class ROMappingKeysValuesView( |
| 322 | ROMappingView, typing.KeysView["_KeyType"], typing.ValuesView[Any] |
| 323 | ): |
| 324 | __slots__ = ("_items",) # mapping slot is provided by KeysView |
| 325 | |
| 326 | |
| 327 | class ROMappingItemsView(ROMappingView, typing.ItemsView["_KeyType", Any]): |