This is the mail archive of the cygwin mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Problem with multiprocessing module from Python


Le Tue, 29 Oct 2013 21:19:14 +0000, Jean-Pierre Flori a ÃcritÂ:

> Le Tue, 29 Oct 2013 16:59:35 -0400, Christopher Faylor a ÃcritÂ:
>> If you want this fixed, the easiest way to get that to happen is to
>> post a simple test case which reproduces the problem.  That is not the
>> code snippet that you sent.  A real working example would be required.
> Sorry about that.
> 
> Here you go:
> """
> from multiprocessing import Pool
> 
> def f(x): return x
> 
> p = pool(2)
> 
> p.map(f, [1, 2])
> """
And I managed to introduce a typo. The third line should read Pool, so it 
is:
"""
from multiprocessing import Pool

def f(x): return x

p = Pool(2)

p.map(f, [1, 2])
"""


--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]