summaryrefslogtreecommitdiffstats
path: root/Doc/c-api
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/c-api')
-rw-r--r--Doc/c-api/init.rst6
-rw-r--r--Doc/c-api/long.rst2
-rw-r--r--Doc/c-api/unicode.rst2
3 files changed, 5 insertions, 5 deletions
diff --git a/Doc/c-api/init.rst b/Doc/c-api/init.rst
index 8e0cf7bb..ffc5b42 100644
--- a/Doc/c-api/init.rst
+++ b/Doc/c-api/init.rst
@@ -1195,7 +1195,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.14
Hangs the current thread, rather than terminating it, if called while the
interpreter is finalizing.
@@ -1257,7 +1257,7 @@ with sub-interpreters:
created by Python. Refer to
:ref:`cautions-regarding-runtime-finalization` for more details.
- .. versionchanged:: next
+ .. versionchanged:: 3.14
Hangs the current thread, rather than terminating it, if called while the
interpreter is finalizing.
@@ -1547,7 +1547,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.14
Hangs the current thread, rather than terminating it, if called while the
interpreter is finalizing.
diff --git a/Doc/c-api/long.rst b/Doc/c-api/long.rst
index 02ef8aa..6d3463f 100644
--- a/Doc/c-api/long.rst
+++ b/Doc/c-api/long.rst
@@ -579,7 +579,7 @@ distinguished from a number. Use :c:func:`PyErr_Occurred` to disambiguate.
On failure, return -1 with an exception set. This function always succeeds
if *obj* is a :c:type:`PyLongObject` or its subtype.
- .. versionadded:: next
+ .. versionadded:: 3.14
.. c:function:: PyObject* PyLong_GetInfo(void)
diff --git a/Doc/c-api/unicode.rst b/Doc/c-api/unicode.rst
index 4daf9e9..59bd766 100644
--- a/Doc/c-api/unicode.rst
+++ b/Doc/c-api/unicode.rst
@@ -1575,7 +1575,7 @@ PyUnicodeWriter
The :c:type:`PyUnicodeWriter` API can be used to create a Python :class:`str`
object.
-.. versionadded:: next
+.. versionadded:: 3.14
.. c:type:: PyUnicodeWriter