diff -r 98678738b7e9 Doc/library/collections.abc.rst --- a/Doc/library/collections.abc.rst Sun May 01 20:34:00 2016 +0300 +++ b/Doc/library/collections.abc.rst Wed May 04 19:05:20 2016 +0800 @@ -55,6 +55,9 @@ ``__len__``, ``insert`` +:class:`ByteString` :class:`Sequence` ``__getitem__``, Inherited :class:`Sequence` methods + ``__len__`` + :class:`Set` :class:`Sized`, ``__contains__``, ``__le__``, ``__lt__``, ``__eq__``, ``__ne__``, :class:`Iterable`, ``__iter__``, ``__gt__``, ``__ge__``, ``__and__``, ``__or__``, :class:`Container` ``__len__`` ``__sub__``, ``__xor__``, and ``isdisjoint`` @@ -125,6 +128,7 @@ .. class:: Sequence MutableSequence + ByteString ABCs for read-only and mutable :term:`sequences `. @@ -141,7 +145,6 @@ The index() method added support for *stop* and *start* arguments. - .. class:: Set MutableSet