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 petr.viktorin
Recipients aeros, asvetlov, cjrh, lukasz.langa, petr.viktorin, vstinner, yselivanov
Date 2020-04-20.08:33:48
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1587371628.59.0.954120402999.issue34037@roundup.psfhosted.org>
In-reply-to
Content
I got a report from a library that ties together asyncio and some other async libraries, getting errors like this:

tests/test_taskgroups.py:60: in test_run_natively
    module.run(testfunc())
/usr/lib64/python3.9/asyncio/runners.py:48: in run
    loop.run_until_complete(loop.shutdown_default_executor())
uvloop/loop.pyx:1451: in uvloop.loop.Loop.run_until_complete
    ???
/usr/lib64/python3.9/asyncio/events.py:254: in shutdown_default_executor
    raise NotImplementedError
E   NotImplementedError

(more at: https://bugzilla.redhat.com/show_bug.cgi?id=1817681#c1 )

I'm not all that familiar with asyncio, but it seems to me that all event loops inherited from BaseEventLoop must be updated to implement this new method to correctly work with run() in Python 3.9. Is that right? If it is, this needs at least a much more prominent What's New entry. Or the hard NotImplementedError should turn into a warning.
History
Date User Action Args
2020-04-20 08:33:48petr.viktorinsetrecipients: + petr.viktorin, vstinner, asvetlov, cjrh, lukasz.langa, yselivanov, aeros
2020-04-20 08:33:48petr.viktorinsetmessageid: <1587371628.59.0.954120402999.issue34037@roundup.psfhosted.org>
2020-04-20 08:33:48petr.viktorinlinkissue34037 messages
2020-04-20 08:33:48petr.viktorincreate