Re: Error in example in multiprocessing

2014-07-23 Thread Terry Reedy
On 7/23/2014 6:27 AM, Akshay Verma wrote: Example under 17.2.1.6. Using a pool of workers Has a error. As far as I understand, The input to res sleep function should be List and not integer. res =

Error in example in multiprocessing

2014-07-23 Thread Akshay Verma
Example under 17.2.1.6. Using a pool of workers Has a error. As far as I understand, The input to res sleep function should be List and not integer. res = pool.apply_async(sleep, 10) Let me know if I am wrong. Be