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 vstinner
Date 2019-04-24.12:58:00
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1556110680.79.0.127639989845.issue36710@roundup.psfhosted.org>
In-reply-to
Content
Eric Snow moved global variables into a _PyRuntimeState structure which is made of sub-structures. There is a single instance of _PyRuntimeState: the _PyRuntime global variable.

I would like to add "_PyRuntimeState *" parameters to functions to avoid relying directly on _PyRuntime global variable. The long term goal is to have "stateless" code: don't rely on global variables, only on input parameters. In practice, we will continue to use thread local storage (TLS) to get the "current context" like the current interpreter and the current Python thread state.
History
Date User Action Args
2019-04-24 12:58:00vstinnersetrecipients: + vstinner
2019-04-24 12:58:00vstinnersetmessageid: <1556110680.79.0.127639989845.issue36710@roundup.psfhosted.org>
2019-04-24 12:58:00vstinnerlinkissue36710 messages
2019-04-24 12:58:00vstinnercreate