New submission from Derek Kim :
>>> 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
Change by Derek Kim :
--
title: possible documentation improvement proposal for multiprocessing ->
Documentation improvement proposal for multiprocessing
___
Python tracker
<https://bugs.python.org/issu
Derek Kim added the comment:
https://docs.python.org/3.8/library/multiprocessing.html#multiprocessing-programming
here is the link to the document.
--
___
Python tracker
<https://bugs.python.org/issue33