From 9f5388f24fd25c4788fb68251737b4cc238c8960 Mon Sep 17 00:00:00 2001 From: Terry Jan Reedy Date: Wed, 23 Jul 2014 20:30:29 -0400 Subject: Fix doc example bug reported on python-list by Akshay Verma. --- Doc/library/multiprocessing.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst index 2763398..471d572 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -398,7 +398,7 @@ For example:: print(res.get(timeout=1)) # prints "100" # make worker sleep for 10 secs - res = pool.apply_async(sleep, 10) + res = pool.apply_async(sleep, [10]) print(res.get(timeout=1)) # raises multiprocessing.TimeoutError # exiting the 'with'-block has stopped the pool -- cgit v0.12