[issue23859] asyncio: document behaviour of wait() cancellation

2018-07-11 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue23859] asyncio: document behaviour of wait() cancellation

2018-05-30 Thread STINNER Victor
STINNER Victor added the comment: Thank you Elvis for the documentation! Cancellation is one of the most complex part of asynchronous programming, and I don't think that asyncio documentation explains it properly. We may document the behaviour on cancellation for most task functions. https:

[issue23859] asyncio: document behaviour of wait() cancellation

2018-05-29 Thread Yury Selivanov
Yury Selivanov added the comment: New changeset f95269404c03bd769a3551cd851b51b8f89672df by Yury Selivanov (Miss Islington (bot)) in branch '3.7': [3.7] bpo-23859: Document that asyncio.wait() does not cancel its futures (GH-7217) (#7227) https://github.com/python/cpython/commit/f95269404c03

[issue23859] asyncio: document behaviour of wait() cancellation

2018-05-29 Thread Elvis Pranskevichus
Change by Elvis Pranskevichus : -- pull_requests: +6862 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https

[issue23859] asyncio: document behaviour of wait() cancellation

2018-05-29 Thread STINNER Victor
STINNER Victor added the comment: > https://github.com/python/cpython/commit/f9aeca2085464838f04bf13f816a1f861d43541f " + when a timeout accurs. " typo: accurs => occurs -- ___ Python tracker ___

[issue23859] asyncio: document behaviour of wait() cancellation

2018-05-29 Thread miss-islington
Change by miss-islington : -- pull_requests: +6860 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue23859] asyncio: document behaviour of wait() cancellation

2018-05-29 Thread miss-islington
Change by miss-islington : -- pull_requests: +6859 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue23859] asyncio: document behaviour of wait() cancellation

2018-05-29 Thread Yury Selivanov
Yury Selivanov added the comment: New changeset f9aeca2085464838f04bf13f816a1f861d43541f by Yury Selivanov (Elvis Pranskevichus) in branch 'master': bpo-23859: Document that asyncio.wait() does not cancel its futures (#7217) https://github.com/python/cpython/commit/f9aeca2085464838f04bf13f816

[issue23859] asyncio: document behaviour of wait() cancellation

2018-05-29 Thread Elvis Pranskevichus
Change by Elvis Pranskevichus : -- keywords: +patch pull_requests: +6850 stage: -> patch review ___ Python tracker ___ ___ Python-b

[issue23859] asyncio: document behaviour of wait() cancellation

2017-12-30 Thread Chris Jerdonek
Change by Chris Jerdonek : -- versions: +Python 3.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue23859] asyncio: document behaviour of wait() cancellation

2017-12-30 Thread Chris Jerdonek
Change by Chris Jerdonek : -- nosy: +chris.jerdonek ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue23859] asyncio: document behaviour of wait() cancellation

2015-04-03 Thread STINNER Victor
New submission from STINNER Victor: When wait(fs) is cancelled, futures of fs are not cancelled. This behaviour is not documented. It should be documented, and a warning should be added to the Cancellation section: https://docs.python.org/dev/library/asyncio-dev.html#cancellation See my messag