[issue21162] code in multiprocessing.pool freeze if inside some code from scikit-learn (and probably liblinear) executed on ubuntu 12.04 64 Bit

Richard Oudkerk report at bugs.python.org
Mon Apr 7 00:44:48 CEST 2014


Richard Oudkerk added the comment:

Could you try pickling and unpickling the result of func():

import cPickle
data = cPickle.dumps(func([1,2,3]), -1)
print cPickle.loads(data)

----------

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


More information about the Python-bugs-list mailing list