Issue #27221: Delete an outdated paragraph about pickle support of Process

Initial patch by Jelle Zijlstra.
This commit is contained in:
Berker Peksag 2016-06-12 12:19:13 +03:00
parent 179f960d47
commit 0b19e1e72c
1 changed files with 1 additions and 6 deletions

View File

@ -2723,12 +2723,7 @@ start method.
More picklability
Ensure that all arguments to :meth:`Process.__init__` are
picklable. This means, in particular, that bound or unbound
methods cannot be used directly as the ``target`` (unless you use
the *fork* start method) --- just define a function and use that
instead.
Ensure that all arguments to :meth:`Process.__init__` 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.