diff options
| author | Thomas Wouters <thomas@python.org> | 2025-06-11 15:36:41 (GMT) |
|---|---|---|
| committer | Thomas Wouters <thomas@python.org> | 2025-06-11 15:36:57 (GMT) |
| commit | 6cb20a219a860eaf687b2d968b41c480c7461909 (patch) | |
| tree | 6d6f0ab0af53b3f3aa1a69bb92d30e574f57294e /Lib | |
| parent | d24d925ab7d4a137d6cd5749ffd43ec634d5c074 (diff) | |
| download | cpython-3.13.5.zip cpython-3.13.5.tar.gz cpython-3.13.5.tar.bz2 | |
Python 3.13.5v3.13.5
Diffstat (limited to 'Lib')
| -rw-r--r-- | Lib/pydoc_data/topics.py | 6 |
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 ======================== |
