https://github.com/python/cpython/commit/c86a9e662f76c8227b22fc6d7255eaa381afbddd
commit: c86a9e662f76c8227b22fc6d7255eaa381afbddd
branch: 3.12
author: Miss Islington (bot) <[email protected]>
committer: rhettinger <[email protected]>
date: 2024-02-03T15:41:04Z
summary:

[3.12] gh-114955: Add clear to MutableSequence's mixin methods in document 
(gh-114956) (gh-114961)

files:
M Doc/library/collections.abc.rst

diff --git a/Doc/library/collections.abc.rst b/Doc/library/collections.abc.rst
index 582bb18f752bd5..7bcaba60c6ddbd 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]

Reply via email to