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 Claudiu.Popa
Recipients Claudiu.Popa, Jim.Jewett, brett.cannon, dholth, eric.araujo
Date 2014-04-30.09:16:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1398849372.28.0.881373817275.issue16104@psf.upfronthosting.co.za>
In-reply-to
Content
Updated patch according to the python-dev thread:

- processes renamed to workers
- `workers` defaults to 1
- When `workers` is equal to 0, then `os.cpu_count` will be used
- When `workers` > 1, multiple processes will be used
- When `workers` == 1, run normally (no multiple processes)
- Negative values raises a ValueError
- Will raise NotImplementedError if multiprocessing can't be used
(when `workers` equals to 0 or > 1)
History
Date User Action Args
2014-04-30 09:16:12Claudiu.Popasetrecipients: + Claudiu.Popa, brett.cannon, eric.araujo, dholth, Jim.Jewett
2014-04-30 09:16:12Claudiu.Popasetmessageid: <1398849372.28.0.881373817275.issue16104@psf.upfronthosting.co.za>
2014-04-30 09:16:12Claudiu.Popalinkissue16104 messages
2014-04-30 09:16:12Claudiu.Popacreate