bpo-36710: Add tstate parameter in import.c by vstinner · Pull Request #14218 · python/cpython (original) (raw)
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Conversation0 Commits1 Checks0 Files changed
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
[ Show hidden characters]({{ revealButtonHref }})
- Add 'tstate' parameter to many internal import.c functions.
- _PyImportZip_Init() now gets 'tstate' parameter rather than
'interp'. - Add 'interp' parameter to _PyState_ClearModules() and rename it
to _PyInterpreterState_ClearModules(). - Move private _PyImport_FindBuiltin() to the internal C API; add
'tstate' parameter to it. - Remove private _PyImport_AddModuleObject() from the C API:
use public PyImport_AddModuleObject() instead. - Remove private _PyImport_FindExtensionObjectEx() from the C API:
use private _PyImport_FindExtensionObject() instead.
https://bugs.python.org/issue36710
- Add 'tstate' parameter to many internal import.c functions.
- _PyImportZip_Init() now gets 'tstate' parameter rather than 'interp'.
- Add 'interp' parameter to _PyState_ClearModules() and rename it to _PyInterpreterState_ClearModules().
- Move private _PyImport_FindBuiltin() to the internal C API; add 'tstate' parameter to it.
- Remove private _PyImport_AddModuleObject() from the C API: use public PyImport_AddModuleObject() instead.
- Remove private _PyImport_FindExtensionObjectEx() from the C API: use private _PyImport_FindExtensionObject() instead.
CuriousLearner added a commit to CuriousLearner/cpython that referenced this pull request
lisroach pushed a commit to lisroach/cpython that referenced this pull request
- Add 'tstate' parameter to many internal import.c functions.
- _PyImportZip_Init() now gets 'tstate' parameter rather than 'interp'.
- Add 'interp' parameter to _PyState_ClearModules() and rename it to _PyInterpreterState_ClearModules().
- Move private _PyImport_FindBuiltin() to the internal C API; add 'tstate' parameter to it.
- Remove private _PyImport_AddModuleObject() from the C API: use public PyImport_AddModuleObject() instead.
- Remove private _PyImport_FindExtensionObjectEx() from the C API: use private _PyImport_FindExtensionObject() instead.
DinoV pushed a commit to DinoV/cpython that referenced this pull request
- Add 'tstate' parameter to many internal import.c functions.
- _PyImportZip_Init() now gets 'tstate' parameter rather than 'interp'.
- Add 'interp' parameter to _PyState_ClearModules() and rename it to _PyInterpreterState_ClearModules().
- Move private _PyImport_FindBuiltin() to the internal C API; add 'tstate' parameter to it.
- Remove private _PyImport_AddModuleObject() from the C API: use public PyImport_AddModuleObject() instead.
- Remove private _PyImport_FindExtensionObjectEx() from the C API: use private _PyImport_FindExtensionObject() instead.
Reviewers
brettcannon Awaiting requested review from brettcannon
encukou Awaiting requested review from encukou
ericsnowcurrently Awaiting requested review from ericsnowcurrently
ncoghlan Awaiting requested review from ncoghlan
warsaw Awaiting requested review from warsaw