diff options
author | oda-gitso <105083118+oda-gitso@users.noreply.github.com> | 2022-07-22 16:46:42 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-22 16:46:42 (GMT) |
commit | 346aabf916e8f6d9ea9fa9b9e21502faec92e502 (patch) | |
tree | 6561bb2922ba7610df5752d98a80683c7c9d9199 | |
parent | 2a9c227ac11f7d8fc6d756542dd3410be0a6b6b0 (diff) | |
download | cpython-346aabf916e8f6d9ea9fa9b9e21502faec92e502.zip cpython-346aabf916e8f6d9ea9fa9b9e21502faec92e502.tar.gz cpython-346aabf916e8f6d9ea9fa9b9e21502faec92e502.tar.bz2 |
Fix incorrect directive in multiprocessing module documentation (GH-93517)
-rw-r--r-- | Doc/library/multiprocessing.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst index a8e35bc..3eb9879 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -1706,7 +1706,7 @@ their parent process exits. The manager classes are defined in the shutdown times out, the process is terminated. If terminating the process also times out, the process is killed. - .. versionchanged: 3.11 + .. versionchanged:: 3.11 Added the *shutdown_timeout* parameter. .. method:: start([initializer[, initargs]]) |