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 jonash
Recipients jonash
Date 2018-01-26.14:23:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1516976610.0.0.467229070634.issue32679@psf.upfronthosting.co.za>
In-reply-to
Content
Use case: Try to get a future's result using concurrent.futures.Future.result(), and log the full exception if there was any.

Currently, only "excinst" (sys.exc_info()[1]) is provided with the Future.exception() method.

Proposal: Add new Future.exc_info() method that returns the full sys.exc_info() at the time of the exception.
History
Date User Action Args
2018-01-26 14:23:30jonashsetrecipients: + jonash
2018-01-26 14:23:30jonashsetmessageid: <1516976610.0.0.467229070634.issue32679@psf.upfronthosting.co.za>
2018-01-26 14:23:29jonashlinkissue32679 messages
2018-01-26 14:23:29jonashcreate