summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorThomas Wouters <thomas@python.org>2025-10-07 12:01:38 (GMT)
committerThomas Wouters <thomas@python.org>2025-10-07 12:01:51 (GMT)
commita15ae614deb58f78f9f4aa11ed18a0afc6a9df7d (patch)
treed64af15879120d3af94cfdef61d24639204dcda3 /Doc
parentcb4b09a2e1cba32ddc016feb251d10c4519e2e5f (diff)
downloadcpython-3.13.8.zip
cpython-3.13.8.tar.gz
cpython-3.13.8.tar.bz2
Python 3.13.8v3.13.8
Diffstat (limited to 'Doc')
-rw-r--r--Doc/c-api/init.rst6
-rw-r--r--Doc/library/imaplib.rst2
-rw-r--r--Doc/library/sqlite3.rst4
3 files changed, 6 insertions, 6 deletions
diff --git a/Doc/c-api/init.rst b/Doc/c-api/init.rst
index cc0f7c3..6a6d35d 100644
--- a/Doc/c-api/init.rst
+++ b/Doc/c-api/init.rst
@@ -1193,7 +1193,7 @@ code, or when embedding the Python interpreter:
created by Python. Refer to
:ref:`cautions-regarding-runtime-finalization` for more details.
- .. versionchanged:: next
+ .. versionchanged:: 3.13.8
Hangs the current thread, rather than terminating it, if called while the
interpreter is finalizing.
@@ -1256,7 +1256,7 @@ with sub-interpreters:
created by Python. Refer to
:ref:`cautions-regarding-runtime-finalization` for more details.
- .. versionchanged:: next
+ .. versionchanged:: 3.13.8
Hangs the current thread, rather than terminating it, if called while the
interpreter is finalizing.
@@ -1563,7 +1563,7 @@ All of the following functions must be called after :c:func:`Py_Initialize`.
:c:func:`Py_END_ALLOW_THREADS`, and :c:func:`PyGILState_Ensure`,
and terminate the current thread if called while the interpreter is finalizing.
- .. versionchanged:: next
+ .. versionchanged:: 3.13.8
Hangs the current thread, rather than terminating it, if called while the
interpreter is finalizing.
diff --git a/Doc/library/imaplib.rst b/Doc/library/imaplib.rst
index dc4cac2..8e77f7d 100644
--- a/Doc/library/imaplib.rst
+++ b/Doc/library/imaplib.rst
@@ -325,7 +325,7 @@ An :class:`IMAP4` instance has the following methods:
the password. Will only work if the server ``CAPABILITY`` response includes the
phrase ``AUTH=CRAM-MD5``.
- .. versionchanged:: next
+ .. versionchanged:: 3.13.8
An :exc:`IMAP4.error` is raised if MD5 support is not available.
diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst
index 7625bd0..39da468 100644
--- a/Doc/library/sqlite3.rst
+++ b/Doc/library/sqlite3.rst
@@ -1630,7 +1630,7 @@ Cursor objects
If the *size* parameter is used, then it is best for it to retain the same
value from one :meth:`fetchmany` call to the next.
- .. versionchanged:: next
+ .. versionchanged:: 3.13.8
Negative *size* values are rejected by raising :exc:`ValueError`.
.. method:: fetchall()
@@ -1660,7 +1660,7 @@ Cursor objects
Read/write attribute that controls the number of rows returned by :meth:`fetchmany`.
The default value is 1 which means a single row would be fetched per call.
- .. versionchanged:: next
+ .. versionchanged:: 3.13.8
Negative values are rejected by raising :exc:`ValueError`.
.. attribute:: connection