diff options
author | Brett Cannon <brett@python.org> | 2016-07-15 19:16:42 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2016-07-15 19:16:42 (GMT) |
commit | 7365361408db7645cf9f2b450f5db851d9a03f89 (patch) | |
tree | 1ab389eb20a37c7d3b6dd24411a196fad2896542 /Doc | |
parent | 3823aabb72124b40c8d79f270d34f91fb394ab39 (diff) | |
parent | 9305bba203747d7176baa1a216ac59d8705eadab (diff) | |
download | cpython-7365361408db7645cf9f2b450f5db851d9a03f89.zip cpython-7365361408db7645cf9f2b450f5db851d9a03f89.tar.gz cpython-7365361408db7645cf9f2b450f5db851d9a03f89.tar.bz2 |
Merge for #26696
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/collections.abc.rst | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Doc/library/collections.abc.rst b/Doc/library/collections.abc.rst index 5b0fb38..3914956 100644 --- a/Doc/library/collections.abc.rst +++ b/Doc/library/collections.abc.rst @@ -56,6 +56,9 @@ ABC Inherits from Abstract Methods Mixin ``__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`` @@ -126,6 +129,7 @@ ABC Inherits from Abstract Methods Mixin .. class:: Sequence MutableSequence + ByteString ABCs for read-only and mutable :term:`sequences <sequence>`. @@ -142,7 +146,6 @@ ABC Inherits from Abstract Methods Mixin The index() method added support for *stop* and *start* arguments. - .. class:: Set MutableSet |