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 Oren Milman
Recipients Oren Milman, yselivanov
Date 2017-10-07.14:19:23
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1507385964.19.0.213398074469.issue31721@psf.upfronthosting.co.za>
In-reply-to
Content
The following code causes an assertion failure in FutureObj_finalize() (in
Modules/_asynciomodule.c):

import asyncio
asyncio.Future()._log_traceback = True


Maybe we should allow Python code to only set it to False, and raise a
ValueError in case Python code tries to set it to True?

(PR 2050 made _log_traceback writable. Are there any usecases for setting it to
True from Python code?)
History
Date User Action Args
2017-10-07 14:19:24Oren Milmansetrecipients: + Oren Milman, yselivanov
2017-10-07 14:19:24Oren Milmansetmessageid: <1507385964.19.0.213398074469.issue31721@psf.upfronthosting.co.za>
2017-10-07 14:19:24Oren Milmanlinkissue31721 messages
2017-10-07 14:19:23Oren Milmancreate