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 iritkatriel
Recipients asksol, iritkatriel, jnoller, masher, petri.lehtinen, pitrou, swindmill
Date 2021-06-29.19:09:17
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1624993757.43.0.104810098182.issue6407@roundup.psfhosted.org>
In-reply-to
Content
It should be possible to do this now through the context, but it's not documented:

>>> import multiprocessing as mp
>>> ctx = mp.get_context()
>>> ctx.SimpleQueue
<bound method BaseContext.SimpleQueue of <multiprocessing.context.SpawnContext object at 0x000001202D30E980>>
>>> ctx.SimpleQueue = list
>>> ctx.SimpleQueue
<class 'list'>
History
Date User Action Args
2021-06-29 19:09:17iritkatrielsetrecipients: + iritkatriel, pitrou, jnoller, asksol, masher, petri.lehtinen, swindmill
2021-06-29 19:09:17iritkatrielsetmessageid: <1624993757.43.0.104810098182.issue6407@roundup.psfhosted.org>
2021-06-29 19:09:17iritkatriellinkissue6407 messages
2021-06-29 19:09:17iritkatrielcreate