[issue41275] Clarify whether Futures can be awaited multiple times

2020-07-14 Thread Andrew Svetlov
Andrew Svetlov added the comment: The allowance to wait for the future object multiple times is settled in stone. This cannot be changed without breaking very many codes. So yes, asyncio guarantees that the feature is settled in stone. If set_value() / set_exception() was called, the value/e

[issue41275] Clarify whether Futures can be awaited multiple times

2020-07-14 Thread Ammar Askar
Change by Ammar Askar : -- nosy: +aeros ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

[issue41275] Clarify whether Futures can be awaited multiple times

2020-07-10 Thread JustAnotherArchivist
New submission from JustAnotherArchivist : While the situation is clear regarding coroutine objects (#25887), as far as I can see, the documentation doesn't specify whether asyncio.Futures can be awaited multiple times. The code has always (at least since the integration into CPython) allowed