Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions Doc/library/multiprocessing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2917,6 +2917,15 @@

Suitable authentication keys can also be generated by using :func:`os.urandom`.

This authentication protects :class:`Listener` and :func:`Client` connections,

Check warning on line 2920 in Doc/library/multiprocessing.rst

View workflow job for this annotation

GitHub Actions / Docs / Docs

py:class reference target not found: Queue [ref.class]

Check warning on line 2920 in Doc/library/multiprocessing.rst

View workflow job for this annotation

GitHub Actions / Docs / Docs

py:func reference target not found: Pipe [ref.func]
which are reachable by address. It is not applied to the anonymous pipes
created by :func:`Pipe` or used internally by :class:`Queue`.
:mod:`multiprocessing` treats all local processes running as the same user as
trusted; on most operating systems such processes can access each other's pipe
file descriptors regardless. Applications that require isolation between
processes of the same user must arrange it at the operating-system level --
for example, by running workers under a different user account or in a sandbox.


Logging
^^^^^^^
Expand Down
Loading