@@ -2096,15 +2096,15 @@ Corresponding to collections in :mod:`collections.abc`
2096
2096
:class: `collections.abc.Container ` now supports ``[] ``. See :pep: `585 `
2097
2097
and :ref: `types-genericalias `.
2098
2098
2099
- .. class :: ItemsView(MappingView, Generic[ KT_co, VT_co])
2099
+ .. class :: ItemsView(MappingView, AbstractSet[tuple[ KT_co, VT_co] ])
2100
2100
2101
2101
A generic version of :class: `collections.abc.ItemsView `.
2102
2102
2103
2103
.. deprecated :: 3.9
2104
2104
:class: `collections.abc.ItemsView ` now supports ``[] ``. See :pep: `585 `
2105
2105
and :ref: `types-genericalias `.
2106
2106
2107
- .. class :: KeysView(MappingView[KT_co] , AbstractSet[KT_co])
2107
+ .. class :: KeysView(MappingView, AbstractSet[KT_co])
2108
2108
2109
2109
A generic version of :class: `collections.abc.KeysView `.
2110
2110
@@ -2124,7 +2124,7 @@ Corresponding to collections in :mod:`collections.abc`
2124
2124
:class: `collections.abc.Mapping ` now supports ``[] ``. See :pep: `585 `
2125
2125
and :ref: `types-genericalias `.
2126
2126
2127
- .. class :: MappingView(Sized, Iterable[T_co] )
2127
+ .. class :: MappingView(Sized)
2128
2128
2129
2129
A generic version of :class: `collections.abc.MappingView `.
2130
2130
@@ -2164,7 +2164,7 @@ Corresponding to collections in :mod:`collections.abc`
2164
2164
:class: `collections.abc.Sequence ` now supports ``[] ``. See :pep: `585 `
2165
2165
and :ref: `types-genericalias `.
2166
2166
2167
- .. class :: ValuesView(MappingView[VT_co ])
2167
+ .. class :: ValuesView(MappingView, Collection[_VT_co ])
2168
2168
2169
2169
A generic version of :class: `collections.abc.ValuesView `.
2170
2170
0 commit comments