mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
[3.14] gh-109070: Document that get_context in multiprocessing have side effect (GH-136341) (GH-136343)
Some checks are pending
Tests / Windows MSI (push) Blocked by required conditions
Tests / Change detection (push) Waiting to run
Tests / Docs (push) Blocked by required conditions
Tests / Check if the ABI has changed (push) Blocked by required conditions
Tests / Check if Autoconf files are up to date (push) Blocked by required conditions
Tests / Check if generated files are up to date (push) Blocked by required conditions
Tests / (push) Blocked by required conditions
Tests / Ubuntu SSL tests with OpenSSL (push) Blocked by required conditions
Tests / WASI (push) Blocked by required conditions
Tests / Hypothesis tests on Ubuntu (push) Blocked by required conditions
Tests / Address sanitizer (push) Blocked by required conditions
Tests / Cross build Linux (push) Blocked by required conditions
Tests / CIFuzz (push) Blocked by required conditions
Tests / All required checks pass (push) Blocked by required conditions
Lint / lint (push) Waiting to run
Some checks are pending
Tests / Windows MSI (push) Blocked by required conditions
Tests / Change detection (push) Waiting to run
Tests / Docs (push) Blocked by required conditions
Tests / Check if the ABI has changed (push) Blocked by required conditions
Tests / Check if Autoconf files are up to date (push) Blocked by required conditions
Tests / Check if generated files are up to date (push) Blocked by required conditions
Tests / (push) Blocked by required conditions
Tests / Ubuntu SSL tests with OpenSSL (push) Blocked by required conditions
Tests / WASI (push) Blocked by required conditions
Tests / Hypothesis tests on Ubuntu (push) Blocked by required conditions
Tests / Address sanitizer (push) Blocked by required conditions
Tests / Cross build Linux (push) Blocked by required conditions
Tests / CIFuzz (push) Blocked by required conditions
Tests / All required checks pass (push) Blocked by required conditions
Lint / lint (push) Waiting to run
gh-109070: Document that get_context in multiprocessing have side effect (GH-136341)
Document that get_context in multiprocessing have side effect
(cherry picked from commit 77a8bd29da
)
Co-authored-by: AN Long <aisk@users.noreply.github.com>
This commit is contained in:
parent
5b65df7925
commit
bd97cb8229
1 changed files with 7 additions and 5 deletions
|
@ -1118,7 +1118,9 @@ Miscellaneous
|
||||||
Return a context object which has the same attributes as the
|
Return a context object which has the same attributes as the
|
||||||
:mod:`multiprocessing` module.
|
:mod:`multiprocessing` module.
|
||||||
|
|
||||||
If *method* is ``None`` then the default context is returned.
|
If *method* is ``None`` then the default context is returned. Note that if
|
||||||
|
the global start method has not been set, this will set it to the
|
||||||
|
default method.
|
||||||
Otherwise *method* should be ``'fork'``, ``'spawn'``,
|
Otherwise *method* should be ``'fork'``, ``'spawn'``,
|
||||||
``'forkserver'``. :exc:`ValueError` is raised if the specified
|
``'forkserver'``. :exc:`ValueError` is raised if the specified
|
||||||
start method is not available. See :ref:`multiprocessing-start-methods`.
|
start method is not available. See :ref:`multiprocessing-start-methods`.
|
||||||
|
@ -1129,10 +1131,10 @@ Miscellaneous
|
||||||
|
|
||||||
Return the name of start method used for starting processes.
|
Return the name of start method used for starting processes.
|
||||||
|
|
||||||
If the start method has not been fixed and *allow_none* is false,
|
If the global start method has not been set and *allow_none* is
|
||||||
then the start method is fixed to the default and the name is
|
``False``, then the start method is set to the default and the name
|
||||||
returned. If the start method has not been fixed and *allow_none*
|
is returned. If the start method has not been set and *allow_none* is
|
||||||
is true then ``None`` is returned.
|
``True`` then ``None`` is returned.
|
||||||
|
|
||||||
The return value can be ``'fork'``, ``'spawn'``, ``'forkserver'``
|
The return value can be ``'fork'``, ``'spawn'``, ``'forkserver'``
|
||||||
or ``None``. See :ref:`multiprocessing-start-methods`.
|
or ``None``. See :ref:`multiprocessing-start-methods`.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue