This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author RobinFrcd
Recipients RobinFrcd, asvetlov, yselivanov
Date 2019-07-03.15:53:59
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1562169239.78.0.569979789065.issue37494@roundup.psfhosted.org>
In-reply-to
Content
I'm trying to get the progession of my asyncIO Futures. For some reason, I can't get value updates inside any other scope.

For example:

```
import concurrent.futures
import time
import asyncio
import random

def get_progress(futures):
    return sum([f.done() for f in futures])

def long_task(t):
    time.sleep(1.5)
    return t

loop = asyncio.get_event_loop()
executor = concurrent.futures.ProcessPoolExecutor(max_workers=4)
inputs = ['a', 'b', 'c', 'd', 'e', 'f', 'g']
futures_ = [loop.run_in_executor(executor, long_task, i) for i in inputs]

for i in range(5):
    time.sleep(1)
    print(get_progress(futures_))
```

It prints only 0. However, if I run this inside a terminal and call get_progress(futures_) it prints 7 as expected.

Am I missing something here ?
History
Date User Action Args
2019-07-03 15:53:59RobinFrcdsetrecipients: + RobinFrcd, asvetlov, yselivanov
2019-07-03 15:53:59RobinFrcdsetmessageid: <1562169239.78.0.569979789065.issue37494@roundup.psfhosted.org>
2019-07-03 15:53:59RobinFrcdlinkissue37494 messages
2019-07-03 15:53:59RobinFrcdcreate