From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 14 Feb 2022 20:11:02 +0000 (-0800) Subject: Fix the signature of multiprocessing.set_executable (GH-31276) X-Git-Tag: v3.10.3~93 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=543242ad8ccbf098c23a192a0f2b0767d9ee198a;p=thirdparty%2FPython%2Fcpython.git Fix the signature of multiprocessing.set_executable (GH-31276) Automerge-Triggered-By: GH:merwok (cherry picked from commit 4f9386661d51b78348395e78710f3bfbee9fd1de) Co-authored-by: Géry Ogam Co-authored-by: Géry Ogam --- diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst index e0954b285b37..096e6492cd42 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -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 ::