Fix doc example bug reported on python-list by Akshay Verma.

This commit is contained in:
Terry Jan Reedy 2014-07-23 20:30:29 -04:00
parent b8352e7253
commit 9f5388f24f

View file

@ -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