Xiang Zhang added the comment:

IIUC, the meaning of executor.map() is to run the tasks concurrently. So you 
have to loop the iterable ahead to submit all the tasks. If you make it a 
generator comprehension, you are actually submitting a task and then getting 
the result. So you are executing the tasks sequentially. Doesn't it violate the 
intention and meaning of executor.map()?

----------
nosy: +xiang.zhang

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue30323>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to