[3.11] gh-114648: Add IndexError exception to tutorial datastructures list.pop entry (GH-114681) (#114842)

Remove redundant explanation of optional argument.
(cherry picked from commit 57c3e775df)

Co-authored-by: srinivasan <shivnaren@gmail.com>
This commit is contained in:
Miss Islington (bot) 2024-02-01 04:53:15 +01:00 committed by GitHub
parent cba5cee035
commit a9c2801d49
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -48,10 +48,9 @@ objects:
:noindex:
Remove the item at the given position in the list, and return it. If no index
is specified, ``a.pop()`` removes and returns the last item in the list. (The
square brackets around the *i* in the method signature denote that the parameter
is optional, not that you should type square brackets at that position. You
will see this notation frequently in the Python Library Reference.)
is specified, ``a.pop()`` removes and returns the last item in the list.
It raises an :exc:`IndexError` if the list is empty or the index is
outside the list range.
.. method:: list.clear()