]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix deprecation doc for `PyEval_InitThreads` (#100667)
authorAlexander Shadchin <alexandr.shadchin@gmail.com>
Mon, 2 Jan 2023 11:13:55 +0000 (14:13 +0300)
committerGitHub <noreply@github.com>
Mon, 2 Jan 2023 11:13:55 +0000 (16:43 +0530)
Doc/c-api/init.rst

index afb17719a77ab255a5e1587b3abf621b5864706c..ad06616eeb0e636f1abac3e6b4bcdea4e8b51caf 100644 (file)
@@ -1049,7 +1049,7 @@ code, or when embedding the Python interpreter:
    .. versionchanged:: 3.2
       This function cannot be called before :c:func:`Py_Initialize()` anymore.
 
-   .. deprecated-removed:: 3.9 3.11
+   .. deprecated:: 3.9
 
    .. index:: module: _thread
 
@@ -1063,7 +1063,7 @@ code, or when embedding the Python interpreter:
    .. versionchanged:: 3.7
       The :term:`GIL` is now initialized by :c:func:`Py_Initialize()`.
 
-   .. deprecated-removed:: 3.9 3.11
+   .. deprecated:: 3.9
 
 
 .. c:function:: PyThreadState* PyEval_SaveThread()