Issue 45486: Stop using internal APIs in _xxsubinterpretersmodule.c.

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