Skip to content

Commit a15ae61

Browse files
committed
Python 3.13.8
1 parent cb4b09a commit a15ae61

File tree

60 files changed

+868
-332
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+868
-332
lines changed

Doc/c-api/init.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1193,7 +1193,7 @@ code, or when embedding the Python interpreter:
11931193
created by Python. Refer to
11941194
:ref:`cautions-regarding-runtime-finalization` for more details.
11951195
1196-
.. versionchanged:: next
1196+
.. versionchanged:: 3.13.8
11971197
Hangs the current thread, rather than terminating it, if called while the
11981198
interpreter is finalizing.
11991199
@@ -1256,7 +1256,7 @@ with sub-interpreters:
12561256
created by Python. Refer to
12571257
:ref:`cautions-regarding-runtime-finalization` for more details.
12581258
1259-
.. versionchanged:: next
1259+
.. versionchanged:: 3.13.8
12601260
Hangs the current thread, rather than terminating it, if called while the
12611261
interpreter is finalizing.
12621262
@@ -1563,7 +1563,7 @@ All of the following functions must be called after :c:func:`Py_Initialize`.
15631563
:c:func:`Py_END_ALLOW_THREADS`, and :c:func:`PyGILState_Ensure`,
15641564
and terminate the current thread if called while the interpreter is finalizing.
15651565
1566-
.. versionchanged:: next
1566+
.. versionchanged:: 3.13.8
15671567
Hangs the current thread, rather than terminating it, if called while the
15681568
interpreter is finalizing.
15691569

Doc/library/imaplib.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ An :class:`IMAP4` instance has the following methods:
325325
the password. Will only work if the server ``CAPABILITY`` response includes the
326326
phrase ``AUTH=CRAM-MD5``.
327327

328-
.. versionchanged:: next
328+
.. versionchanged:: 3.13.8
329329
An :exc:`IMAP4.error` is raised if MD5 support is not available.
330330

331331

Doc/library/sqlite3.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1630,7 +1630,7 @@ Cursor objects
16301630
If the *size* parameter is used, then it is best for it to retain the same
16311631
value from one :meth:`fetchmany` call to the next.
16321632

1633-
.. versionchanged:: next
1633+
.. versionchanged:: 3.13.8
16341634
Negative *size* values are rejected by raising :exc:`ValueError`.
16351635

16361636
.. method:: fetchall()
@@ -1660,7 +1660,7 @@ Cursor objects
16601660
Read/write attribute that controls the number of rows returned by :meth:`fetchmany`.
16611661
The default value is 1 which means a single row would be fetched per call.
16621662

1663-
.. versionchanged:: next
1663+
.. versionchanged:: 3.13.8
16641664
Negative values are rejected by raising :exc:`ValueError`.
16651665

16661666
.. attribute:: connection

Include/patchlevel.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@
1818
/*--start constants--*/
1919
#define PY_MAJOR_VERSION 3
2020
#define PY_MINOR_VERSION 13
21-
#define PY_MICRO_VERSION 7
21+
#define PY_MICRO_VERSION 8
2222
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL
2323
#define PY_RELEASE_SERIAL 0
2424

2525
/* Version as a string */
26-
#define PY_VERSION "3.13.7+"
26+
#define PY_VERSION "3.13.8"
2727
/*--end constants--*/
2828

2929
/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.

0 commit comments

Comments
 (0)