-
-
Notifications
You must be signed in to change notification settings - Fork 31.4k
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 and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bpo-38159: Clarify documentation of PyState_AddModule #16101
Conversation
This was never intented to be called manually from PyInit_*. Also, clarify PyState_RemoveModule return value.
Just to clarify "implementing an alternative import mechanism" meant someone changing Btw for context, these were added since the documentation currently specifies that As a matter of fact, in our system we do rely on this signal to correctly work with Maybe an alternative can be to update the import documentation that it should offer this guarantee? On the other hand, it seems like that should be an implementation detail and it's best to let the module themselves call the right APIs. Thoughts? |
Changing |
I'm proposing a PyState_AddModule doc update to make things clearer: python#16101
I asked over at at capi-sig. |
@encukou maybe you could add "DO-NOT-MERGE"? |
Note to reviewer: See the capi-sig discussion |
cc @ncoghlan |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM with a small comment
@@ -485,10 +485,19 @@ since multiple such modules can be created from a single definition. | |||
|
|||
Only effective on modules created using single-phase initialization. | |||
|
|||
Python calls ``PyState_AddModule`` automatically after importing a module, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
An alternate implementation might not necessarily call PyState_AddModule
but still achieve the same end result. Perhaps just say that Python attaches the module to the interpreter state and should be accessible through PyState_FindModule
. How they achieve that should be up to the implementation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All ways I can find of wording this more precisely make it significantly harder to understand.
I think it's understood that alternate implementations are free to do an equivalent of calling PyState_AddModule
, instead of actually calling it. They should still implement the PyState_AddModule
semantics (unless they decide to differ, of course).
Another thing that's implied here is that Python only calls this on single-phase-init modules. And another is that it's idempotent.
Should we document all that? How much hand-holding do authors of alternative import mechanisms need? (This is a real question, which you are in a good position to answer.)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
But my main issue is:
All ways I can find of wording this more precisely make it significantly harder to understand.
If you can think of a better way, let me know! Otherwise I can merge this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added a couple of specific suggestions that I think improve precision without making it too much harder to read.
Co-Authored-By: Nick Coghlan <ncoghlan@gmail.com>
Azure Pipelines didn't start, I'll try closing & reopening. |
Thanks @encukou for the PR 🌮🎉.. I'm working now to backport this PR to: 3.7, 3.8. |
GH-17026 is a backport of this pull request to the 3.8 branch. |
GH-17027 is a backport of this pull request to the 3.7 branch. |
This was never intented to be called manually from PyInit_*. Also, clarify PyState_RemoveModule return value. (cherry picked from commit 9bc94ec) Co-authored-by: Petr Viktorin <encukou@gmail.com>
GH-17026) This was never intented to be called manually from PyInit_*. Also, clarify PyState_RemoveModule return value. (cherry picked from commit 9bc94ec) Co-authored-by: Petr Viktorin <encukou@gmail.com> https://bugs.python.org/issue38159 Automerge-Triggered-By: @encukou
GH-17027) This was never intented to be called manually from PyInit_*. Also, clarify PyState_RemoveModule return value. (cherry picked from commit 9bc94ec) Co-authored-by: Petr Viktorin <encukou@gmail.com> https://bugs.python.org/issue38159 Automerge-Triggered-By: @encukou
This was never intented to be called manually from PyInit_*. Also, clarify PyState_RemoveModule return value.
This was never intented to be called manually from PyInit_*. Also, clarify PyState_RemoveModule return value.
This was never intented to be called manually from PyInit_*.
Also, clarify PyState_RemoveModule return value.
https://bugs.python.org/issue38159
Automerge-Triggered-By: @encukou
Automerge-Triggered-By: @encukou