[Python-checkins] bpo-36728: Remove PyEval_ReInitThreads documentation (GH-13282)

Victor Stinner webhook-mailer at python.org
Mon May 13 10:22:57 EDT 2019


https://github.com/python/cpython/commit/c1f7262f7013074613805347db2276f8b5e0e3a4
commit: c1f7262f7013074613805347db2276f8b5e0e3a4
branch: master
author: Victor Stinner <vstinner at redhat.com>
committer: GitHub <noreply at github.com>
date: 2019-05-13T16:22:51+02:00
summary:

bpo-36728: Remove PyEval_ReInitThreads documentation (GH-13282)

files:
M Doc/c-api/init.rst

diff --git a/Doc/c-api/init.rst b/Doc/c-api/init.rst
index 367c069a7ff4..b30649498a92 100644
--- a/Doc/c-api/init.rst
+++ b/Doc/c-api/init.rst
@@ -877,13 +877,6 @@ code, or when embedding the Python interpreter:
    and is not released.
 
 
-.. c:function:: void PyEval_ReInitThreads()
-
-   This function is called from :c:func:`PyOS_AfterFork_Child` to ensure
-   that newly created child processes don't hold locks referring to threads
-   which are not running in the child process.
-
-
 The following functions use thread-local storage, and are not compatible
 with sub-interpreters:
 



More information about the Python-checkins mailing list