mirror of
https://github.com/python/cpython.git
synced 2026-02-05 09:25:35 +00:00
Merge with 3.4
This commit is contained in:
commit
ed82613ca0
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue