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 primal
Recipients aeros, asvetlov, primal, yselivanov
Date 2019-11-01.09:36:46
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1572601006.29.0.83835312286.issue32309@roundup.psfhosted.org>
In-reply-to
Content
Run method should be:

    async def run(self, func, *args, **kwargs):
        call = functools.partial(func, *args, **kwargs)
        return await self._loop.run_in_executor(None, call)
History
Date User Action Args
2019-11-01 09:36:46primalsetrecipients: + primal, asvetlov, yselivanov, aeros
2019-11-01 09:36:46primalsetmessageid: <1572601006.29.0.83835312286.issue32309@roundup.psfhosted.org>
2019-11-01 09:36:46primallinkissue32309 messages
2019-11-01 09:36:46primalcreate