[issue41372] Log exception never retrieved in concurrent.futures

2020-07-22 Thread Bar Harel
Change by Bar Harel : -- nosy: +bquinlan, pitrou ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue41372] Log exception never retrieved in concurrent.futures

2020-07-22 Thread Bar Harel
New submission from Bar Harel : Asyncio has an amazing mechanism showing "Task exception was never retrieved" or "Future exception was never retrieved" if the task threw an exception, and no one checked its `.result()` or `.exception()`. It does so by setting a private variable named `__log_t