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 reeyarn
Recipients ned.deily, reeyarn, ronaldoussoren
Date 2020-12-22.02:00:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1608602448.28.0.20225447007.issue42708@roundup.psfhosted.org>
In-reply-to
Content
I just run the sample code from multiprocessing's documentation page:

#https://docs.python.org/3/library/multiprocessing.html

from multiprocessing import Pool

def f(x):
    return x*x


with Pool(5) as p:
    print(p.map(f, [1, 2, 3]))

## end of code

And it cannot run, with the following error messages:
Process SpawnPoolWorker-2:
Traceback (most recent call last):
  File "/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/lib/python3.8/multiprocessing/process.py", line 315, in _bootstrap
    self.run()
  File "/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/lib/python3.8/multiprocessing/process.py", line 108, in run
    self._target(*self._args, **self._kwargs)
  File "/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/lib/python3.8/multiprocessing/pool.py", line 114, in worker
    task = get()
  File "/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/lib/python3.8/multiprocessing/queues.py", line 358, in get
    return _ForkingPickler.loads(res)
AttributeError: Can't get attribute 'f' on <module '__main__' (built-in)>
History
Date User Action Args
2020-12-22 02:00:48reeyarnsetrecipients: + reeyarn, ronaldoussoren, ned.deily
2020-12-22 02:00:48reeyarnsetmessageid: <1608602448.28.0.20225447007.issue42708@roundup.psfhosted.org>
2020-12-22 02:00:48reeyarnlinkissue42708 messages
2020-12-22 02:00:47reeyarncreate