Consistent use of i as an iterator.

This commit is contained in:
Arceliar 2013-05-29 23:10:30 +02:00
parent 651cdd6357
commit 42a446748d
1 changed files with 3 additions and 3 deletions

View File

@ -19,9 +19,9 @@ def run(target, initialHash):
for i in range(pool_size):
result.append(pool.apply_async(_pool_worker, args = (i, initialHash, target, pool_size)))
while True:
for counter in range(pool_size):
if result[counter].ready():
result = result[counter].get()
for i in range(pool_size):
if result[i].ready():
result = result[i].get()
pool.terminate()
return result[0], result[1]
time.sleep(1)