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 aeros
Recipients aeros, asvetlov, primal, yselivanov
Date 2019-11-01.11:23:44
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1572607424.61.0.149350637335.issue32309@roundup.psfhosted.org>
In-reply-to
Content
> thread = threading.Thread(target=loop._do_shutdown, args=(executor,future))

Correction:

> thread = threading.Thread(target=_do_shutdown, args=(loop, executor,future))

Also, it might make more sense to rename _do_shutdown() to _do_executor_shutdown() to give the function's name more context; renaming shouldn't be an issue since it's private. Plus, it was just added recently in 3.9, so there's even less backwards compatibility to be concerned with.
History
Date User Action Args
2019-11-01 11:23:44aerossetrecipients: + aeros, asvetlov, yselivanov, primal
2019-11-01 11:23:44aerossetmessageid: <1572607424.61.0.149350637335.issue32309@roundup.psfhosted.org>
2019-11-01 11:23:44aeroslinkissue32309 messages
2019-11-01 11:23:44aeroscreate