[issue28965] Multiprocessing spawn/forkserver fails to pass Queues

Antoine Pitrou report at bugs.python.org
Sat Jul 22 17:21:47 EDT 2017


Antoine Pitrou added the comment:

Ok, this is really an error in your script.  If you add `p.join()` to wait for the process to end, you'll see no error pops up.  What really happens is that the parent process ends before the child is fully started, and the resource underlying the queue is cleaned up at this point.

----------
nosy: +pitrou

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue28965>
_______________________________________


More information about the Python-bugs-list mailing list