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.

classification
Title: Stop using internal APIs in _xxsubinterpretersmodule.c.
Type: Stage: needs patch
Components: Versions: Python 3.11
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: FFY00, eric.snow, vstinner
Priority: normal Keywords:

Created on 2021-10-15 14:58 by eric.snow, last changed 2022-04-11 14:59 by admin.

Messages (1)
msg404027 - (view) Author: Eric Snow (eric.snow) * (Python committer) Date: 2021-10-15 14:58
By design, _xxsubinterpretersmodule is not supposed to be a builtin module.  As a regular extension module it should only use public (or private-but-not-internal) APIs.  In fact, I was careful to not use any internal APIs in the implementation.  However, some have crept in.  The usage of internal API should be replaced with public (or private) API.  If necessary, new API should be added.
History
Date User Action Args
2022-04-11 14:59:51adminsetgithub: 89649
2021-10-15 18:35:48FFY00setnosy: + FFY00
2021-10-15 14:58:34eric.snowcreate