summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
Diffstat (limited to 'Lib')
-rw-r--r--Lib/pydoc_data/topics.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/Lib/pydoc_data/topics.py b/Lib/pydoc_data/topics.py
index 063c499..e807ea9 100644
--- a/Lib/pydoc_data/topics.py
+++ b/Lib/pydoc_data/topics.py
@@ -1,4 +1,4 @@
-# Autogenerated by Sphinx on Tue Jun 3 17:34:20 2025
+# Autogenerated by Sphinx on Wed Jun 11 17:36:53 2025
# as part of the release process.
topics = {
@@ -11967,7 +11967,7 @@ operations. [3]
| "s * n" or "n * s" | equivalent to adding *s* to | (2)(7) |
| | itself *n* times | |
+----------------------------+----------------------------------+------------+
-| "s[i]" | *i*th item of *s*, origin 0 | (3) |
+| "s[i]" | *i*th item of *s*, origin 0 | (3)(9) |
+----------------------------+----------------------------------+------------+
| "s[i:j]" | slice of *s* from *i* to *j* | (3)(4) |
+----------------------------+----------------------------------+------------+
@@ -12091,6 +12091,8 @@ Notes:
returned index being relative to the start of the sequence rather
than the start of the slice.
+9. An "IndexError" is raised if *i* is outside the sequence range.
+
Immutable Sequence Types
========================