summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorAN Long <aisk@users.noreply.github.com>2024-10-30 20:17:20 (GMT)
committerGitHub <noreply@github.com>2024-10-30 20:17:20 (GMT)
commit5768fef355a55aa9c6522e5444de9346bd267972 (patch)
tree33a0cab60440d5f2e320189ebea5a7acc98e66af /Doc/library
parent60c415bd531392a239c23c754154a7944695ac99 (diff)
downloadcpython-5768fef355a55aa9c6522e5444de9346bd267972.zip
cpython-5768fef355a55aa9c6522e5444de9346bd267972.tar.gz
cpython-5768fef355a55aa9c6522e5444de9346bd267972.tar.bz2
gh-114990: Add missing mixin methods in collections.abc's document (GH-114991)
Co-authored-by: Carol Willing <carolcode@willingconsulting.com>
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/collections.abc.rst5
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/library/collections.abc.rst b/Doc/library/collections.abc.rst
index b77a363..42e40de 100644
--- a/Doc/library/collections.abc.rst
+++ b/Doc/library/collections.abc.rst
@@ -143,7 +143,8 @@ ABC Inherits from Abstract Methods Mi
:class:`Set` :class:`Collection` ``__contains__``, ``__le__``, ``__lt__``, ``__eq__``, ``__ne__``,
``__iter__``, ``__gt__``, ``__ge__``, ``__and__``, ``__or__``,
- ``__len__`` ``__sub__``, ``__xor__``, and ``isdisjoint``
+ ``__len__`` ``__sub__``, ``__rsub__``, ``__xor__``, ``__rxor__``
+ and ``isdisjoint``
:class:`MutableSet` :class:`Set` ``__contains__``, Inherited :class:`Set` methods and
``__iter__``, ``clear``, ``pop``, ``remove``, ``__ior__``,
@@ -162,7 +163,7 @@ ABC Inherits from Abstract Methods Mi
``__len__``
-:class:`MappingView` :class:`Sized` ``__len__``
+:class:`MappingView` :class:`Sized` ``__init__``, ``__len__`` and ``__repr__``
:class:`ItemsView` :class:`MappingView`, ``__contains__``,
:class:`Set` ``__iter__``
:class:`KeysView` :class:`MappingView`, ``__contains__``,