aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2024-02-03 16:48:29 +0100
committerGitHub <noreply@github.com>2024-02-03 15:48:29 +0000
commite9639e428a7930636cd57f75c6c7c5ea5c10e4a2 (patch)
treeedc6b772b36a729464cc9e3ec901c94e4d73842a
parent[3.11] Update LOGGING example taken from Django docs. (GH-114903) (#114952) (diff)
downloadcpython-e9639e428a7930636cd57f75c6c7c5ea5c10e4a2.tar.gz
cpython-e9639e428a7930636cd57f75c6c7c5ea5c10e4a2.tar.bz2
cpython-e9639e428a7930636cd57f75c6c7c5ea5c10e4a2.zip
[3.11] gh-114955: Add clear to MutableSequence's mixin methods in document (gh-114956) (#114962)
gh-114955: Add clear to MutableSequence's mixin methods in document (gh-114956) (cherry picked from commit b4240fd68ecd2c22ec82ac549eabfe5fd35fab2a) Co-authored-by: AN Long <aisk@users.noreply.github.com>
-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 0b05899d05a..be93eb7c139 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``