https://github.com/python/cpython/commit/e9639e428a7930636cd57f75c6c7c5ea5c10e4a2 commit: e9639e428a7930636cd57f75c6c7c5ea5c10e4a2 branch: 3.11 author: Miss Islington (bot) <[email protected]> committer: AlexWaygood <[email protected]> date: 2024-02-03T15:48:29Z summary:
[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 <[email protected]> files: M Doc/library/collections.abc.rst diff --git a/Doc/library/collections.abc.rst b/Doc/library/collections.abc.rst index 0b05899d05a251..be93eb7c139a38 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`` _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
