[issue23289] concurrent.futures.Executor.map is not equivalent to map.

2022-01-24 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Clarify map API in concurrent.futures ___ Python tracker ___ __

[issue23289] concurrent.futures.Executor.map is not equivalent to map.

2015-03-18 Thread Ned Deily
Changes by Ned Deily : -- nosy: +bquinlan versions: -Python 3.2, Python 3.3, Python 3.4, Python 3.6 ___ Python tracker ___ ___ Python

[issue23289] concurrent.futures.Executor.map is not equivalent to map.

2015-01-21 Thread Piotr Majkrzak
New submission from Piotr Majkrzak: In documentation https://docs.python.org/3/library/concurrent.futures.html#concurrent.futures.Executor.map is writen that this fucntion is equivalent to the builtin map. But it is not true due to the fact that it is not lazy evalueded. The reason is in http