[issue31035] Document order of firing callbacks added with Future.add_done_callback()

2019-02-24 Thread Cheryl Sabella
Cheryl Sabella added the comment: The docs for asyncio were rewritten in September 2018. @socketpair, please take a look at the new documentation and update this ticket if any of your requests are now explained. If not, would you be able to provide more specific suggestions of what you woul

[issue31035] Document order of firing callbacks added with Future.add_done_callback()

2017-07-25 Thread Марк Коренберг
New submission from Марк Коренберг: Please document these two things: * Order of callbacks firing is not specified. (Is it True?) * All callbacks are called *BEFORE* await triggered: f = asyncio.Future() f.add_done_callback(xxx) f.add_done_callback(yyy) try: await f except