diff options
author | Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> | 2024-02-12 14:37:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-12 14:37:20 (GMT) |
commit | 5ec271db3bd76f7ea723231cbe4eaa93ebe41191 (patch) | |
tree | 1a82477ed638658b10d9aebfa8824460c6e545a9 /Doc/library/multiprocessing.rst | |
parent | 6ca300fcc6055eb0f919cd047b2fb23764a3aea0 (diff) | |
download | cpython-5ec271db3bd76f7ea723231cbe4eaa93ebe41191.zip cpython-5ec271db3bd76f7ea723231cbe4eaa93ebe41191.tar.gz cpython-5ec271db3bd76f7ea723231cbe4eaa93ebe41191.tar.bz2 |
[3.12] gh-101100: Fix Sphinx warnings in `whatsnew/2.7.rst` and related (GH-115319) (#115330)
Diffstat (limited to 'Doc/library/multiprocessing.rst')
-rw-r--r-- | Doc/library/multiprocessing.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst index ac49e70..5b371ca 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -649,8 +649,8 @@ The :mod:`multiprocessing` package mostly replicates the API of the .. method:: terminate() - Terminate the process. On POSIX this is done using the ``SIGTERM`` signal; - on Windows :c:func:`TerminateProcess` is used. Note that exit handlers and + Terminate the process. On POSIX this is done using the :py:const:`~signal.SIGTERM` signal; + on Windows :c:func:`!TerminateProcess` is used. Note that exit handlers and finally clauses, etc., will not be executed. Note that descendant processes of the process will *not* be terminated -- |