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 cmeyer
Recipients cmeyer, gvanrossum, yselivanov
Date 2016-10-17.21:54:11
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1476741251.72.0.37603874415.issue28464@psf.upfronthosting.co.za>
In-reply-to
Content
BaseEventLoop.close shuts down the executor associated with the event loop.

It should do that BEFORE it sets self._closed = True, otherwise any pending executor futures will attempt to 'call_soon' on the event loop when they finish, resulting in a confusing error message that the event loop is already closed.
History
Date User Action Args
2016-10-17 21:54:11cmeyersetrecipients: + cmeyer, gvanrossum, yselivanov
2016-10-17 21:54:11cmeyersetmessageid: <1476741251.72.0.37603874415.issue28464@psf.upfronthosting.co.za>
2016-10-17 21:54:11cmeyerlinkissue28464 messages
2016-10-17 21:54:11cmeyercreate