A dict comprehension is much prettier (thanks Antoine)

This commit is contained in:
Nick Coghlan 2012-10-16 23:14:03 +10:00
parent 5ecd00402e
commit d6d5cf33ef
1 changed files with 3 additions and 5 deletions

View File

@ -144,11 +144,9 @@ ThreadPoolExecutor Example
# We can use a with statement to ensure threads are cleaned up promptly
with concurrent.futures.ThreadPoolExecutor(max_workers=5) as executor:
# Start the load operations and mark each future with its URL
load_urls = [executor.submit(load_url, url, 60) for url in URLS]
for future, url in zip(load_urls, URLS):
future.url = url
for future in concurrent.futures.as_completed(load_urls):
url = future.url
future_to_url = {executor.submit(load_url, url, 60):url for url in URLS}
for future in concurrent.futures.as_completed(future_to_url):
url = future_to_url[url]
try:
data = future.result()
except Exception as exc: