diff options
author | Géry Ogam <gery.ogam@gmail.com> | 2022-04-22 22:47:09 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-22 22:47:09 (GMT) |
commit | 5576ddbbbc9c1d7a7819abc961e5d604ae0f7dd7 (patch) | |
tree | 4f87033ff66e48c11420b27c687ded28df53cd50 /Doc | |
parent | f912cc0e413f667a8cc257a41775272bc641b0d8 (diff) | |
download | cpython-5576ddbbbc9c1d7a7819abc961e5d604ae0f7dd7.zip cpython-5576ddbbbc9c1d7a7819abc961e5d604ae0f7dd7.tar.gz cpython-5576ddbbbc9c1d7a7819abc961e5d604ae0f7dd7.tar.bz2 |
bpo-46720: Add support for path-like objects to multiprocessing.set_executable for Windows (GH-31279)
This bring the API to be on a par with Unix-like systems.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/multiprocessing.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst index 83aa5cb..70802ee 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -1075,6 +1075,9 @@ Miscellaneous .. versionchanged:: 3.4 Now supported on Unix when the ``'spawn'`` start method is used. + .. versionchanged:: 3.11 + Accepts a :term:`path-like object`. + .. function:: set_start_method(method) Set the method which should be used to start child processes. |