Uh oh!
There was an error while loading. Please reload this page.
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? |
encukou
commented
Sep 13, 2019
Changing |
I'm proposing a PyState_AddModule doc update to make things clearer: python#16101
encukou
commented
Sep 13, 2019
I asked over at at capi-sig. |
matrixise
commented
Sep 13, 2019
@encukou maybe you could add "DO-NOT-MERGE"? |
encukou
commented
Sep 24, 2019
Note to reviewer: See the capi-sig discussion |
encukou
commented
Sep 24, 2019
cc @ncoghlan |
| 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.
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.
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.
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.
ncoghlan
left a comment
There was a problem hiding this comment.
Added a couple of specific suggestions that I think improve precision without making it too much harder to read.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Co-Authored-By: Nick Coghlan <ncoghlan@gmail.com>
encukou
commented
Nov 1, 2019
Azure Pipelines didn't start, I'll try closing & reopening. |
miss-islington
commented
Nov 1, 2019
Thanks @encukou for the PR 🌮🎉.. I'm working now to backport this PR to: 3.7, 3.8. |
bedevere-bot
commented
Nov 1, 2019
GH-17026 is a backport of this pull request to the 3.8 branch. |
bedevere-bot
commented
Nov 1, 2019
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