summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
Diffstat (limited to 'Doc')
-rw-r--r--Doc/c-api/init.rst4
-rw-r--r--Doc/library/pyexpat.rst4
-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 2226908..1559f1c 100644
--- a/Doc/c-api/init.rst
+++ b/Doc/c-api/init.rst
@@ -1555,7 +1555,7 @@ All of the following functions must be called after :c:func:`Py_Initialize`.
See :c:func:`PyUnstable_ThreadState_ResetStackProtection` for undoing this operation.
- .. versionadded:: next
+ .. versionadded:: 3.14.1
.. warning::
@@ -1575,7 +1575,7 @@ All of the following functions must be called after :c:func:`Py_Initialize`.
See :c:func:`PyUnstable_ThreadState_SetStackProtection` for an explanation.
- .. versionadded:: next
+ .. versionadded:: 3.14.1
.. warning::
diff --git a/Doc/library/pyexpat.rst b/Doc/library/pyexpat.rst
index c005547..b2dd92f 100644
--- a/Doc/library/pyexpat.rst
+++ b/Doc/library/pyexpat.rst
@@ -254,7 +254,7 @@ common XML vulnerabilities.
The corresponding :attr:`~ExpatError.lineno` and :attr:`~ExpatError.offset`
should not be used as they may have no special meaning.
- .. versionadded:: next
+ .. versionadded:: 3.14.1
.. method:: xmlparser.SetAllocTrackerMaximumAmplification(max_factor, /)
@@ -284,7 +284,7 @@ common XML vulnerabilities.
that can be adjusted by :meth:`.SetAllocTrackerActivationThreshold`
is exceeded.
- .. versionadded:: next
+ .. versionadded:: 3.14.1
:class:`xmlparser` objects have the following attributes:
diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst
index 3dfac22..cbc3f32 100644
--- a/Doc/library/sqlite3.rst
+++ b/Doc/library/sqlite3.rst
@@ -1614,7 +1614,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.14.1
Negative *size* values are rejected by raising :exc:`ValueError`.
.. method:: fetchall()
@@ -1644,7 +1644,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.14.1
Negative values are rejected by raising :exc:`ValueError`.
.. attribute:: connection