This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author bombs-kim
Recipients bombs-kim, docs@python
Date 2018-05-17.07:15:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1526541318.79.0.682650639539.issue33553@psf.upfronthosting.co.za>
In-reply-to
Content
>>> from multiprocessing import Pool
>>> p = Pool(5)
>>> def f(x):
...     return x*x
...
>>> p.map(f, [1,2,3])

This example in the document is confusing because this is already wrong code when run with fork method even if you run it as a script. With fork start method, f should be defined before p is created.

Also, just advising that one shouldn't use interactive shell and should run multiprocessing code in if __name__ == '__main__' is not informative becuase those conditions are generally no problem with fork method.

Can I try improving the documentation?
History
Date User Action Args
2018-05-17 07:15:18bombs-kimsetrecipients: + bombs-kim, docs@python
2018-05-17 07:15:18bombs-kimsetmessageid: <1526541318.79.0.682650639539.issue33553@psf.upfronthosting.co.za>
2018-05-17 07:15:18bombs-kimlinkissue33553 messages
2018-05-17 07:15:18bombs-kimcreate