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 bjs
Recipients asvetlov, bjs, pagliaricci.m, yselivanov
Date 2021-10-06.11:36:52
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1633520212.22.0.637971219867.issue45390@roundup.psfhosted.org>
In-reply-to
Content
This seems to be present in both the Python implementation as well as the accelerated C _asyncio module.

It looks like that when a Task awaits a cancelled future,
the task itself is cancelled but the cancellation message is not propagated to the task.
https://github.com/python/cpython/blob/main/Lib/asyncio/tasks.py#L242
History
Date User Action Args
2021-10-06 11:36:52bjssetrecipients: + bjs, asvetlov, yselivanov, pagliaricci.m
2021-10-06 11:36:52bjssetmessageid: <1633520212.22.0.637971219867.issue45390@roundup.psfhosted.org>
2021-10-06 11:36:52bjslinkissue45390 messages
2021-10-06 11:36:52bjscreate