Python 3.13.5

This commit is contained in:
Thomas Wouters 2025-06-11 17:36:41 +02:00
parent d24d925ab7
commit 6cb20a219a
17 changed files with 136 additions and 28 deletions

View file

@ -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
========================