diff options
author | Victor Stinner <vstinner@redhat.com> | 2019-05-13 14:22:51 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-13 14:22:51 (GMT) |
commit | c1f7262f7013074613805347db2276f8b5e0e3a4 (patch) | |
tree | 3956b79e719bbd83b0e7c7e175ce075ba768e7e1 | |
parent | 778a9107586e29421af3a08209cf0b557c1fe5bc (diff) | |
download | cpython-c1f7262f7013074613805347db2276f8b5e0e3a4.zip cpython-c1f7262f7013074613805347db2276f8b5e0e3a4.tar.gz cpython-c1f7262f7013074613805347db2276f8b5e0e3a4.tar.bz2 |
bpo-36728: Remove PyEval_ReInitThreads documentation (GH-13282)
-rw-r--r-- | Doc/c-api/init.rst | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Doc/c-api/init.rst b/Doc/c-api/init.rst index 367c069..b306494 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: |