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 gdb
Recipients asksol, gdb, jnoller
Date 2010-07-13.15:47:19
SpamBayes Score 0.00052011065
Marked as misclassified No
Message-id <1279036041.72.0.261536778004.issue9205@psf.upfronthosting.co.za>
In-reply-to
Content
While looking at your patch in issue 9244, I realized that my code fails to handle an unpickleable task, as in:
"""
#!/usr/bin/env python
import multiprocessing
foo = lambda x: x
p = multiprocessing.Pool(1)
p.apply(foo, [1])
"""
This should be fixed by the attached pickling_error.patch (independent of my other patches).
History
Date User Action Args
2010-07-13 15:47:21gdbsetrecipients: + gdb, jnoller, asksol
2010-07-13 15:47:21gdbsetmessageid: <1279036041.72.0.261536778004.issue9205@psf.upfronthosting.co.za>
2010-07-13 15:47:20gdblinkissue9205 messages
2010-07-13 15:47:20gdbcreate