diff options
author | Eric Snow <ericsnowcurrently@gmail.com> | 2024-04-24 16:18:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-24 16:18:24 (GMT) |
commit | 03e3e317231d67557191ee067cb7f192f3d4d092 (patch) | |
tree | 613288cb7be97b91ef960d68dcccd2ac741d451c /Tools | |
parent | af3c1d817d3f8369f8003965d967332a3a721a25 (diff) | |
download | cpython-03e3e317231d67557191ee067cb7f192f3d4d092.zip cpython-03e3e317231d67557191ee067cb7f192f3d4d092.tar.gz cpython-03e3e317231d67557191ee067cb7f192f3d4d092.tar.bz2 |
gh-76785: Rename _xxsubinterpreters to _interpreters (gh-117791)
See https://discuss.python.org/t/pep-734-multiple-interpreters-in-the-stdlib/41147/26.
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/build/generate_stdlib_module_names.py | 3 | ||||
-rw-r--r-- | Tools/c-analyzer/cpython/ignored.tsv | 10 |
2 files changed, 5 insertions, 8 deletions
diff --git a/Tools/build/generate_stdlib_module_names.py b/Tools/build/generate_stdlib_module_names.py index 69dc74e..f9fd295 100644 --- a/Tools/build/generate_stdlib_module_names.py +++ b/Tools/build/generate_stdlib_module_names.py @@ -36,9 +36,6 @@ IGNORE = { '_testmultiphase', '_testsinglephase', '_testexternalinspection', - '_xxsubinterpreters', - '_xxinterpchannels', - '_xxinterpqueues', '_xxtestfuzz', 'idlelib.idle_test', 'test', diff --git a/Tools/c-analyzer/cpython/ignored.tsv b/Tools/c-analyzer/cpython/ignored.tsv index e0ae390..87b695d 100644 --- a/Tools/c-analyzer/cpython/ignored.tsv +++ b/Tools/c-analyzer/cpython/ignored.tsv @@ -164,8 +164,8 @@ Python/pylifecycle.c _Py_FatalErrorFormat reentrant - Python/pylifecycle.c fatal_error reentrant - # explicitly protected, internal-only -Modules/_xxinterpchannelsmodule.c - _globals - -Modules/_xxinterpqueuesmodule.c - _globals - +Modules/_interpchannelsmodule.c - _globals - +Modules/_interpqueuesmodule.c - _globals - # set once during module init Modules/_decimal/_decimal.c - minalloc_is_set - @@ -246,11 +246,11 @@ Modules/_struct.c - bigendian_table - Modules/_struct.c - lilendian_table - Modules/_struct.c - native_table - Modules/_tkinter.c - state_key - -Modules/_xxinterpchannelsmodule.c - _channelid_end_recv - -Modules/_xxinterpchannelsmodule.c - _channelid_end_send - +Modules/_interpchannelsmodule.c - _channelid_end_recv - +Modules/_interpchannelsmodule.c - _channelid_end_send - Modules/_zoneinfo.c - DAYS_BEFORE_MONTH - Modules/_zoneinfo.c - DAYS_IN_MONTH - -Modules/_xxsubinterpretersmodule.c - no_exception - +Modules/_interpretersmodule.c - no_exception - Modules/arraymodule.c - descriptors - Modules/arraymodule.c - emptybuf - Modules/cjkcodecs/_codecs_cn.c - _mapping_list - |