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 ncoghlan
Recipients docs@python, ncoghlan, petr.viktorin
Date 2019-12-30.05:18:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1577683127.59.0.69655210791.issue39161@roundup.psfhosted.org>
In-reply-to
Content
The Py_NewInterpreter docs only cover the behaviour of extension modules that use single-phase initialization: https://docs.python.org/3/c-api/init.html#c.Py_NewInterpreter

Multi-phase initialization allows each subinterpreter to get its own copy of extension modules as well, with only C/C++ level static and global variables being shared.
History
Date User Action Args
2019-12-30 05:18:47ncoghlansetrecipients: + ncoghlan, petr.viktorin, docs@python
2019-12-30 05:18:47ncoghlansetmessageid: <1577683127.59.0.69655210791.issue39161@roundup.psfhosted.org>
2019-12-30 05:18:47ncoghlanlinkissue39161 messages
2019-12-30 05:18:47ncoghlancreate