Skip to content
Prev Previous commit
Next Next commit
formatting
  • Loading branch information
gpshead committed Jul 27, 2025
commit 5f36fbff8c5c0f524ec2d799bc40c191cf1b7bd6
8 changes: 4 additions & 4 deletions Doc/library/multiprocessing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3109,10 +3109,10 @@ start method.

More picklability

Ensure that all arguments to :class:`Process` are picklable.
Also, if you subclass :class:`~multiprocessing.Process` then make sure that
instances will be picklable when the :meth:`Process.start
<multiprocessing.Process.start>` method is called.
Ensure that all arguments to :class:`~multiprocessing.Process` are
picklable. Also, if you subclass ``Process.__init__``, you must make sure
that instances will be picklable when the
:meth:`Process.start <multiprocessing.Process.start>` method is called.

Global variables

Expand Down
Loading