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 vstinner
Recipients asvetlov, benjamin-sch, vstinner, yselivanov
Date 2021-09-29.20:41:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1632948067.57.0.478817611651.issue45262@roundup.psfhosted.org>
In-reply-to
Content
> "Assertion failed: Py_IS_TYPE(rl, &PyRunningLoopHolder_Type), file D:\a\1\s\Modules_asynciomodule.c, line 261"

The _asyncio extension uses static types and doesn't implement the multiphase initialization API. It doesn't work well with your "deinitialize/initialize the interpreter" use case.

The _asyncio extension should use heap types and the multiphase init API.
History
Date User Action Args
2021-09-29 20:41:07vstinnersetrecipients: + vstinner, asvetlov, yselivanov, benjamin-sch
2021-09-29 20:41:07vstinnersetmessageid: <1632948067.57.0.478817611651.issue45262@roundup.psfhosted.org>
2021-09-29 20:41:07vstinnerlinkissue45262 messages
2021-09-29 20:41:07vstinnercreate