FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

gh-117953: Split Up _PyImport_LoadDynamicModuleWithSpec() by ericsnowcurrently · Pull Request #118203 · python/cpython · GitHub

/ cpython Public

gh-117953: Split Up _PyImport_LoadDynamicModuleWithSpec() - #118203

Merged
ericsnowcurrently merged 13 commits into
python:mainfrom
ericsnowcurrently:split-up-_PyImport_LoadDynamicModuleWithSpec-2
Apr 29, 2024
Merged

gh-117953: Split Up _PyImport_LoadDynamicModuleWithSpec()#118203
ericsnowcurrently merged 13 commits into
python:mainfrom
ericsnowcurrently:split-up-_PyImport_LoadDynamicModuleWithSpec-2

Conversation

ericsnowcurrently commented Apr 23, 2024
edited
Loading

Copy link
Copy Markdown
Member

I've pulled this out of #118116.

Basically, I've turned most of _PyImport_LoadDynamicModuleWithSpec() into two new functions (_PyImport_GetModInitFunc() and _PyImport_RunModInitFunc()) and moved the rest of it out into _imp_create_dynamic_impl(). There shouldn't be any changes in behavior.

This change makes some future changes simpler. This is particularly relevant to potentially calling each module init function in the main interpreter first. Thus the critical part of the PR is the addition of _PyImport_RunModInitFunc(), which is strictly focused on running the init func and validating the result. A later PR will take it a step farther by capturing error information rather than raising exceptions.

FWIW, this change also helps readers by clarifying a bit more about what happens when an extension/builtin module is imported.

ericsnowcurrently force-pushed the split-up-_PyImport_LoadDynamicModuleWithSpec-2 branch from 378778e to 52f0656 Compare April 24, 2024 19:59
ericsnowcurrently marked this pull request as ready for review April 24, 2024 19:59
ericsnowcurrently requested review from encukou and removed request for brettcannon, kumaraditya303, ncoghlan and warsaw April 24, 2024 19:59

Copy link
Copy Markdown
Member Author

@encukou, if you have a few minutes, I'm mostly looking for a sanity check on this PR.

encukou commented Apr 26, 2024

Copy link
Copy Markdown
Member

This PR looks good, but see my comment here: #118193 (comment)

An indirect test of a multiphase module with m_slots=NULL triggers the //assert that's commented out here.

Copy link
Copy Markdown
Member Author

Thanks. I'll take a look at that.

encukou left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Choose a reason Spam Abuse Off Topic Outdated Duplicate Resolved Low Quality

Thanks!
+1, I think this is good to merge. The is_singlephase thing can be sorted out later, see #117953 (comment)

ericsnowcurrently merged commit 44f57a9 into python:main Apr 29, 2024
ericsnowcurrently deleted the split-up-_PyImport_LoadDynamicModuleWithSpec-2 branch April 29, 2024 15:29
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants


Back | FazBrowse Home | New Git URL