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 eric.snow, jdemeyer, nascheme, ncoghlan, phsilva, steve.dower, vstinner
Date 2020-01-13.16:08:27
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1578931707.6.0.917944080894.issue36710@roundup.psfhosted.org>
In-reply-to
Content
I continued this work by passing tstate to internal C functions: bpo-38644.

I also added PyInterpreterState.runtime field, so it's now possible to retrieve the runtime from tstate:

    runtime = tstate->interp->runtime;

I wrote an article on passing tstate to internal C functions:

https://vstinner.github.io/cpython-pass-tstate.html

I consider that this issue is now done. I close the issue.
History
Date User Action Args
2020-01-13 16:08:27vstinnersetrecipients: + vstinner, nascheme, ncoghlan, phsilva, eric.snow, jdemeyer, steve.dower
2020-01-13 16:08:27vstinnersetmessageid: <1578931707.6.0.917944080894.issue36710@roundup.psfhosted.org>
2020-01-13 16:08:27vstinnerlinkissue36710 messages
2020-01-13 16:08:27vstinnercreate