[issue27221] [multiprocessing] Doc is outdated regarding method picklability

2016-06-05 Thread Jelle Zijlstra
Changes by Jelle Zijlstra : Added file: http://bugs.python.org/file43244/issue27221.patch ___ Python tracker ___ ___ Python-bugs-list mailing

[issue27221] [multiprocessing] Doc is outdated regarding method picklability

2016-06-05 Thread Jelle Zijlstra
Changes by Jelle Zijlstra : Removed file: http://bugs.python.org/file43243/issue27233.patch ___ Python tracker ___ ___ Python-bugs-list mailin

[issue27221] [multiprocessing] Doc is outdated regarding method picklability

2016-06-05 Thread Jelle Zijlstra
Jelle Zijlstra added the comment: Patch attached. I also checked that this case is tested, and it looks like the Bunch object in Lib/test/_test_multiprocessing.py uses a method as its target. -- keywords: +patch nosy: +Jelle Zijlstra Added file: http://bugs.python.org/file43243/issue272

[issue27221] [multiprocessing] Doc is outdated regarding method picklability

2016-06-04 Thread Memeplex
New submission from Memeplex: The module documentation recommends... More picklability Ensure that all arguments to Process.__init__() are picklable. This means, in particular, that bound or unbound methods cannot be used directly as the target (unless you use the fork start method) — just de