Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Doc/tutorial/datastructures.rst
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ objects:
.. method:: list.index(x[, start[, end]])
:noindex:

Return zero-based index in the list of the first item whose value is equal to *x*.
Return zero-based index of the first occurrence of *x* in the list.
Raises a :exc:`ValueError` if there is no such item.

The optional arguments *start* and *end* are interpreted as in the slice
Expand Down
Loading