]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix the signature of multiprocessing.set_executable (GH-31276)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Fri, 11 Feb 2022 15:08:44 +0000 (07:08 -0800)
committerGitHub <noreply@github.com>
Fri, 11 Feb 2022 15:08:44 +0000 (07:08 -0800)
Automerge-Triggered-By: GH:merwok
(cherry picked from commit 4f9386661d51b78348395e78710f3bfbee9fd1de)

Co-authored-by: Géry Ogam <gery.ogam@gmail.com>
Doc/library/multiprocessing.rst

index 4966be303f4254e8a1117d2293829720a75092fa..b62e1f8dba1bf2f0dc308e4eb8ab9a94333f057a 100644 (file)
@@ -1047,9 +1047,9 @@ Miscellaneous
 
    .. versionadded:: 3.4
 
-.. function:: set_executable()
+.. function:: set_executable(executable)
 
-   Sets the path of the Python interpreter to use when starting a child process.
+   Set the path of the Python interpreter to use when starting a child process.
    (By default :data:`sys.executable` is used).  Embedders will probably need to
    do some thing like ::