We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6635928 commit c714456Copy full SHA for c714456
demos/pool-map.py
@@ -7,13 +7,13 @@ def f(x):
7
pool = Pool(8)
8
9
# calculate x**2 in parallel for x in 0..9
10
-print(pool.map(f, range(10)))
+result = pool.map(f, range(10))
11
+print(result)
12
13
# non-blocking alternative
14
result = pool.map_async(f, range(10))
15
while not result.ready():
16
print("waiting...")
17
time.sleep(1)
-
18
print(result.get())
19
demos/pool.py
@@ -15,6 +15,5 @@ def f(x):
-print(result.get(timeout=1))
+print(result.get())
20
0 commit comments