summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAN Long <aisk@users.noreply.github.com>2024-02-03 15:33:58 (GMT)
committerGitHub <noreply@github.com>2024-02-03 15:33:58 (GMT)
commitb4240fd68ecd2c22ec82ac549eabfe5fd35fab2a (patch)
tree40c9b2da99fdd0a4547025ee6cc5d2725353de7b
parentefc489021c2a5dba46979bd304563aee0c479a31 (diff)
downloadcpython-b4240fd68ecd2c22ec82ac549eabfe5fd35fab2a.zip
cpython-b4240fd68ecd2c22ec82ac549eabfe5fd35fab2a.tar.gz
cpython-b4240fd68ecd2c22ec82ac549eabfe5fd35fab2a.tar.bz2
gh-114955: Add clear to MutableSequence's mixin methods in document (gh-114956)
-rw-r--r--Doc/library/collections.abc.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/collections.abc.rst b/Doc/library/collections.abc.rst
index 582bb18..7bcaba6 100644
--- a/Doc/library/collections.abc.rst
+++ b/Doc/library/collections.abc.rst
@@ -136,8 +136,8 @@ ABC Inherits from Abstract Methods Mi
:class:`Collection` ``__len__`` ``index``, and ``count``
:class:`MutableSequence` :class:`Sequence` ``__getitem__``, Inherited :class:`Sequence` methods and
- ``__setitem__``, ``append``, ``reverse``, ``extend``, ``pop``,
- ``__delitem__``, ``remove``, and ``__iadd__``
+ ``__setitem__``, ``append``, ``clear``, ``reverse``, ``extend``,
+ ``__delitem__``, ``pop``, ``remove``, and ``__iadd__``
``__len__``,
``insert``