Message363748
When calling asyncio.gather the await_args_list is not correct. In the attached minimal example it contains only the latest call and not each of the three actual calls.
Expected output:
[call(0), call(1), call(2)]
[call(1), call(2), call(3)] # or any permutation hereof
Actual output:
[call(0), call(1), call(2)]
[call(3), call(3), call(3)] |
|
Date |
User |
Action |
Args |
2020-03-09 16:29:08 | Mads Sejersen | set | recipients:
+ Mads Sejersen, asvetlov, yselivanov |
2020-03-09 16:29:08 | Mads Sejersen | set | messageid: <1583771348.56.0.120635292587.issue39915@roundup.psfhosted.org> |
2020-03-09 16:29:08 | Mads Sejersen | link | issue39915 messages |
2020-03-09 16:29:08 | Mads Sejersen | create | |
|