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 Mads Sejersen
Recipients Mads Sejersen, asvetlov, yselivanov
Date 2020-03-09.16:29:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1583771348.56.0.120635292587.issue39915@roundup.psfhosted.org>
In-reply-to
Content
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)]
History
Date User Action Args
2020-03-09 16:29:08Mads Sejersensetrecipients: + Mads Sejersen, asvetlov, yselivanov
2020-03-09 16:29:08Mads Sejersensetmessageid: <1583771348.56.0.120635292587.issue39915@roundup.psfhosted.org>
2020-03-09 16:29:08Mads Sejersenlinkissue39915 messages
2020-03-09 16:29:08Mads Sejersencreate