Skip to content
Merged
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
17 changes: 15 additions & 2 deletions Doc/library/multiprocessing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2050,11 +2050,24 @@ authentication* using the :mod:`hmac` module.
unavailable then it is ``None``.


The module defines two exceptions:
The module defines the following exceptions:

.. exception:: ProcessError

The base class of all :mod:`multiprocessing` exceptions.

.. exception:: BufferTooShort

Exception raised by :meth:`Connection.recv_bytes_into()` when the supplied
buffer object is too small for the message read.

.. exception:: AuthenticationError

Exception raised when there is an authentication error.
Raised when there is an authentication error.

.. exception:: TimeoutError

Raised by methods with a timeout when the timeout expires.


**Examples**
Expand Down