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 socketpair
Recipients docs@python, socketpair, yselivanov
Date 2017-07-25.15:13:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1500995618.96.0.99651815805.issue31035@psf.upfronthosting.co.za>
In-reply-to
Content
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 Exception:
     ...  # all callbacks are called BEFORE entering that place (for example)
* How exceptions in callbacks are handled
History
Date User Action Args
2017-07-25 15:13:38socketpairsetrecipients: + socketpair, docs@python, yselivanov
2017-07-25 15:13:38socketpairsetmessageid: <1500995618.96.0.99651815805.issue31035@psf.upfronthosting.co.za>
2017-07-25 15:13:38socketpairlinkissue31035 messages
2017-07-25 15:13:38socketpaircreate