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 yselivanov
Recipients asvetlov, yselivanov
Date 2017-12-19.04:50:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1513659003.72.0.213398074469.issue32363@psf.upfronthosting.co.za>
In-reply-to
Content
About the only use case I can come up with is subclassing asyncio.Task and overriding set_result and set_exception implementations.  This use case has been broken (unintentionally) in Python 3.6, when we first implemented Task in _asynciomodule.c.  C Task doesn't try to resolve 'self.set_result()' or 'self.set_exception()'.  It calls the C "super" implementations instead.
History
Date User Action Args
2017-12-19 04:50:03yselivanovsetrecipients: + yselivanov, asvetlov
2017-12-19 04:50:03yselivanovsetmessageid: <1513659003.72.0.213398074469.issue32363@psf.upfronthosting.co.za>
2017-12-19 04:50:03yselivanovlinkissue32363 messages
2017-12-19 04:50:03yselivanovcreate