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.

classification
Title: "Python [...] calls sys.displayhook() on unhandled exceptions"
Type: Stage: resolved
Components: Documentation Versions:
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, iritkatriel, jwilk
Priority: normal Keywords:

Created on 2016-08-23 13:48 by jwilk, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (2)
msg273446 - (view) Author: Jakub Wilk (jwilk) Date: 2016-08-23 13:48
<https://docs.python.org/3/library/asyncio-dev.html#detect-exceptions-never-consumed> reads:
"Python usually calls sys.displayhook() on unhandled exceptions. If Future.set_exception() is called, but the exception is never consumed, sys.displayhook() is not called."

I believe this should be s/displayhook/excepthook/g.
msg381866 - (view) Author: Irit Katriel (iritkatriel) * (Python committer) Date: 2020-11-25 22:38
Thanks for reporting. That line has been edited out of the doc in the meantime.
History
Date User Action Args
2022-04-11 14:58:35adminsetgithub: 72026
2020-11-25 22:38:00iritkatrielsetstatus: open -> closed

nosy: + iritkatriel
messages: + msg381866

resolution: out of date
stage: resolved
2016-08-23 13:48:59jwilkcreate