@@ -1791,15 +1791,15 @@ Corresponding to collections in :mod:`collections.abc`
1791
1791
:class: `collections.abc.Container ` now supports ``[] ``. See :pep: `585 `
1792
1792
and :ref: `types-genericalias `.
1793
1793
1794
- .. class :: ItemsView(MappingView, Generic[ KT_co, VT_co])
1794
+ .. class :: ItemsView(MappingView, AbstractSet[tuple[ KT_co, VT_co] ])
1795
1795
1796
1796
A generic version of :class: `collections.abc.ItemsView `.
1797
1797
1798
1798
.. deprecated :: 3.9
1799
1799
:class: `collections.abc.ItemsView ` now supports ``[] ``. See :pep: `585 `
1800
1800
and :ref: `types-genericalias `.
1801
1801
1802
- .. class :: KeysView(MappingView[KT_co] , AbstractSet[KT_co])
1802
+ .. class :: KeysView(MappingView, AbstractSet[KT_co])
1803
1803
1804
1804
A generic version of :class: `collections.abc.KeysView `.
1805
1805
@@ -1819,7 +1819,7 @@ Corresponding to collections in :mod:`collections.abc`
1819
1819
:class: `collections.abc.Mapping ` now supports ``[] ``. See :pep: `585 `
1820
1820
and :ref: `types-genericalias `.
1821
1821
1822
- .. class :: MappingView(Sized, Iterable[T_co] )
1822
+ .. class :: MappingView(Sized)
1823
1823
1824
1824
A generic version of :class: `collections.abc.MappingView `.
1825
1825
@@ -1859,7 +1859,7 @@ Corresponding to collections in :mod:`collections.abc`
1859
1859
:class: `collections.abc.Sequence ` now supports ``[] ``. See :pep: `585 `
1860
1860
and :ref: `types-genericalias `.
1861
1861
1862
- .. class :: ValuesView(MappingView[VT_co ])
1862
+ .. class :: ValuesView(MappingView, Collection[_VT_co ])
1863
1863
1864
1864
A generic version of :class: `collections.abc.ValuesView `.
1865
1865
0 commit comments